All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opentripplanner.graph_builder.module.osm.CreativeNamerEditor Maven / Gradle / Ivy

package org.opentripplanner.graph_builder.module.osm;

import java.beans.PropertyEditorSupport;

public class CreativeNamerEditor extends PropertyEditorSupport {
    private CreativeNamer value;

    public void setAsText(String pattern) {
        value = new CreativeNamer(pattern);
    }

    public String getAsText() {
        return value.getCreativeNamePattern();
    }

    public Object getValue() {
        return value;
    }

    public void setValue(Object object) {
        value = (CreativeNamer) object;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy