org.geotools.styling.DescriptionImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gt-main Show documentation
Show all versions of gt-main Show documentation
The main module contains the GeoTools public interfaces that are used by
other GeoTools modules (and GeoTools applications). Where possible we make
use industry standard terms as provided by OGC and ISO standards.
The formal GeoTools public api consists of gt-metadata, jts and the gt-main module.
The main module contains the default implementations that are available provided
to other GeoTools modules using our factory system. Factories are obtained from
an appropriate FactoryFinder, giving applications a chance configure the factory
used using the Factory Hints facilities.
FilterFactory ff = CommonFactoryFinder.getFilterFactory();
Expression expr = ff.add( expression1, expression2 );
If you find yourself using implementation specific classes chances are you doing it wrong:
Expression expr = new AddImpl( expression1, expressiom2 );
The newest version!
/*
* GeoTools - The Open Source Java GIS Toolkit
* http://geotools.org
*
* (C) 2019, Open Source Geospatial Foundation (OSGeo)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation;
* version 2.1 of the License.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*/
package org.geotools.styling;
import org.geotools.util.SimpleInternationalString;
import org.opengis.util.InternationalString;
public class DescriptionImpl implements Description {
private InternationalString title;
private InternationalString description;
public DescriptionImpl() {
title = null;
description = null;
}
public DescriptionImpl(String title, String description) {
this(new SimpleInternationalString(title), new SimpleInternationalString(description));
}
public DescriptionImpl(InternationalString title, InternationalString description) {
this.title = title;
this.description = description;
}
/** Copy constructor. */
public DescriptionImpl(org.opengis.style.Description description) {
this(description.getTitle(), description.getAbstract());
}
public InternationalString getTitle() {
return title;
}
public void setTitle(InternationalString title) {
this.title = title;
}
public void setTitle(String title) {
this.title = title != null ? new SimpleInternationalString(title) : null;
}
public InternationalString getAbstract() {
return description;
}
public void setAbstract(InternationalString description) {
this.description = description;
}
public void setAbstract(String description) {
this.description = description != null ? new SimpleInternationalString(description) : null;
}
public Object accept(org.opengis.style.StyleVisitor visitor, Object extraData) {
return null;
}
public void accept(StyleVisitor visitor) {
// nothing to do
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((description == null) ? 0 : description.hashCode());
result = prime * result + ((title == null) ? 0 : title.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (getClass() != obj.getClass()) return false;
DescriptionImpl other = (DescriptionImpl) obj;
if (description == null) {
if (other.description != null) return false;
} else if (!description.equals(other.description)) return false;
if (title == null) {
if (other.title != null) return false;
} else if (!title.equals(other.title)) return false;
return true;
}
/**
* Check the provided description return it as a DescriptionImpl
*
* @return DescriptionImpl from the provided description
*/
static DescriptionImpl cast(org.opengis.style.Description description) {
if (description == null) {
return null;
} else if (description instanceof DescriptionImpl) {
return (DescriptionImpl) description;
} else {
DescriptionImpl copy = new DescriptionImpl();
copy.setTitle(description.getTitle());
copy.setAbstract(description.getAbstract());
return copy;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy