/******************************************************************************* * Copyright 2013 See AUTHORS File * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ package com.mobidevelop.maps; public interface MapLayer { public abstract Map getMap(); public abstract void setMap(Map map); public abstract String getName(); public abstract void setName(String name); public abstract float getX(); public abstract void setX(float x); public abstract float getY(); public abstract void setY(float y); public abstract float getWidth(); public abstract void setWidth(float width); public abstract float getHeight(); public abstract void setHeight(float height); public abstract boolean getVisible(); public abstract void setVisible(boolean visible); public abstract MapObjects getObjects(); public abstract MapProperties getProperties(); }