Package com.bbn.openmap.graphicLoader

Examples of com.bbn.openmap.graphicLoader.GraphicLoader


        addGraphicLoaderToMapHandler = PropUtils.booleanFromProperties(props,
                realPrefix + AddGraphicLoaderToMapHandlerProperty,
                addGraphicLoaderToMapHandler);

        if (glString != null) {
            GraphicLoader gl = (GraphicLoader) ComponentFactory.create(glString,
                    prefix,
                    props);
            if (gl != null) {
                needToAddGraphicLoaderToMapHandler = addGraphicLoaderToMapHandler;
                setGraphicLoader(gl);
View Full Code Here


     *
     * @see com.bbn.openmap.PropertyConsumer
     */
    public Properties getProperties(Properties props) {
        props = super.getProperties(props);
        GraphicLoader gl = getGraphicLoader();

        if (gl != null) {
            String prefix = PropUtils.getScopedPropertyPrefix(this);
            props.setProperty(prefix + GraphicLoaderProperty, gl.getClass()
                    .getName());
            if (gl instanceof PropertyConsumer) {
                ((PropertyConsumer) gl).getProperties(props);
            }
        }
View Full Code Here

     */
    public Properties getPropertyInfo(Properties props) {
        props = super.getPropertyInfo(props);
        props.setProperty(GraphicLoaderProperty, "Classname of GraphicLoader");

        GraphicLoader gl = getGraphicLoader();
        if (gl != null && gl instanceof PropertyConsumer) {
            ((PropertyConsumer) gl).getPropertyInfo(props);
        }

        return props;
View Full Code Here

TOP

Related Classes of com.bbn.openmap.graphicLoader.GraphicLoader

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.