forked from organicmaps/organicmaps
Review fixes.
This commit is contained in:
parent
1effa57a13
commit
9d00b21198
2 changed files with 21 additions and 32 deletions
|
@ -31,31 +31,20 @@ public class MapObject implements Parcelable, PopularityProvider, ShareableInfoP
|
|||
// Order must correspond indexer/map_object.hpp
|
||||
public enum OsmProps
|
||||
{
|
||||
OpeningHours(0),
|
||||
Phone(1),
|
||||
Fax(2),
|
||||
Website(3),
|
||||
Email(4),
|
||||
Cuisine(5),
|
||||
Stars(6),
|
||||
Operator(7),
|
||||
Elevation(8),
|
||||
Internet(9),
|
||||
Wikipedia(10),
|
||||
Flats(11),
|
||||
BuildingLevels(12),
|
||||
Level(13);
|
||||
private final int mType;
|
||||
|
||||
OsmProps(int type)
|
||||
{
|
||||
mType = type;
|
||||
}
|
||||
|
||||
public int toInt()
|
||||
{
|
||||
return mType;
|
||||
}
|
||||
OpeningHours,
|
||||
Phone,
|
||||
Fax,
|
||||
Website,
|
||||
Email,
|
||||
Cuisine,
|
||||
Stars,
|
||||
Operator,
|
||||
Elevation,
|
||||
Internet,
|
||||
Wikipedia,
|
||||
Flats,
|
||||
BuildingLevels,
|
||||
Level;
|
||||
}
|
||||
|
||||
@Retention(RetentionPolicy.SOURCE)
|
||||
|
|
|
@ -463,13 +463,13 @@ public class EditorFragment extends BaseMwmFragment implements View.OnClickListe
|
|||
mReset = (TextView) view.findViewById(R.id.reset);
|
||||
mReset.setOnClickListener(this);
|
||||
|
||||
mDetailsBlocks.append(OsmProps.OpeningHours.toInt(), blockOpeningHours);
|
||||
mDetailsBlocks.append(OsmProps.Phone.toInt(), blockPhone);
|
||||
mDetailsBlocks.append(OsmProps.Website.toInt(), blockWeb);
|
||||
mDetailsBlocks.append(OsmProps.Email.toInt(), blockEmail);
|
||||
mDetailsBlocks.append(OsmProps.Cuisine.toInt(), blockCuisine);
|
||||
mDetailsBlocks.append(OsmProps.Operator.toInt(), blockOperator);
|
||||
mDetailsBlocks.append(OsmProps.Internet.toInt(), blockWifi);
|
||||
mDetailsBlocks.append(OsmProps.OpeningHours.ordinal(), blockOpeningHours);
|
||||
mDetailsBlocks.append(OsmProps.Phone.ordinal(), blockPhone);
|
||||
mDetailsBlocks.append(OsmProps.Website.ordinal(), blockWeb);
|
||||
mDetailsBlocks.append(OsmProps.Email.ordinal(), blockEmail);
|
||||
mDetailsBlocks.append(OsmProps.Cuisine.ordinal(), blockCuisine);
|
||||
mDetailsBlocks.append(OsmProps.Operator.ordinal(), blockOperator);
|
||||
mDetailsBlocks.append(OsmProps.Internet.ordinal(), blockWifi);
|
||||
}
|
||||
|
||||
private static EditText findInput(View blockWithInput)
|
||||
|
|
Loading…
Add table
Reference in a new issue