本文整理汇总了Java中net.opengis.gml.RectifiedGridCoverageType类的典型用法代码示例。如果您正苦于以下问题:Java RectifiedGridCoverageType类的具体用法?Java RectifiedGridCoverageType怎么用?Java RectifiedGridCoverageType使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
RectifiedGridCoverageType类属于net.opengis.gml包,在下文中一共展示了RectifiedGridCoverageType类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getText
import net.opengis.gml.RectifiedGridCoverageType; //导入依赖的package包/类
/**
* This returns the label text for the adapted class.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public String getText(Object object) {
String label = ((RectifiedGridCoverageType)object).getId();
return label == null || label.length() == 0 ?
getString("_UI_RectifiedGridCoverageType_type") :
getString("_UI_RectifiedGridCoverageType_type") + " " + label;
}
示例2: notifyChanged
import net.opengis.gml.RectifiedGridCoverageType; //导入依赖的package包/类
/**
* This handles model notifications by calling {@link #updateChildren} to update any cached
* children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void notifyChanged(Notification notification) {
updateChildren(notification);
switch (notification.getFeatureID(RectifiedGridCoverageType.class)) {
case GmlPackage.RECTIFIED_GRID_COVERAGE_TYPE__RECTIFIED_GRID_DOMAIN:
fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), true, false));
return;
}
super.notifyChanged(notification);
}
示例3: basicSetRectifiedGridCoverage
import net.opengis.gml.RectifiedGridCoverageType; //导入依赖的package包/类
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public NotificationChain basicSetRectifiedGridCoverage(RectifiedGridCoverageType newRectifiedGridCoverage, NotificationChain msgs) {
RectifiedGridCoverageType oldRectifiedGridCoverage = rectifiedGridCoverage;
rectifiedGridCoverage = newRectifiedGridCoverage;
if (eNotificationRequired()) {
ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, ReliefPackage.GRID_PROPERTY_TYPE__RECTIFIED_GRID_COVERAGE, oldRectifiedGridCoverage, newRectifiedGridCoverage);
if (msgs == null) msgs = notification; else msgs.add(notification);
}
return msgs;
}
示例4: setRectifiedGridCoverage
import net.opengis.gml.RectifiedGridCoverageType; //导入依赖的package包/类
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public void setRectifiedGridCoverage(RectifiedGridCoverageType newRectifiedGridCoverage) {
if (newRectifiedGridCoverage != rectifiedGridCoverage) {
NotificationChain msgs = null;
if (rectifiedGridCoverage != null)
msgs = ((InternalEObject)rectifiedGridCoverage).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - ReliefPackage.GRID_PROPERTY_TYPE__RECTIFIED_GRID_COVERAGE, null, msgs);
if (newRectifiedGridCoverage != null)
msgs = ((InternalEObject)newRectifiedGridCoverage).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - ReliefPackage.GRID_PROPERTY_TYPE__RECTIFIED_GRID_COVERAGE, null, msgs);
msgs = basicSetRectifiedGridCoverage(newRectifiedGridCoverage, msgs);
if (msgs != null) msgs.dispatch();
}
else if (eNotificationRequired())
eNotify(new ENotificationImpl(this, Notification.SET, ReliefPackage.GRID_PROPERTY_TYPE__RECTIFIED_GRID_COVERAGE, newRectifiedGridCoverage, newRectifiedGridCoverage));
}
示例5: eSet
import net.opengis.gml.RectifiedGridCoverageType; //导入依赖的package包/类
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eSet(int featureID, Object newValue) {
switch (featureID) {
case ReliefPackage.GRID_PROPERTY_TYPE__RECTIFIED_GRID_COVERAGE:
setRectifiedGridCoverage((RectifiedGridCoverageType)newValue);
return;
}
super.eSet(featureID, newValue);
}
示例6: eUnset
import net.opengis.gml.RectifiedGridCoverageType; //导入依赖的package包/类
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public void eUnset(int featureID) {
switch (featureID) {
case ReliefPackage.GRID_PROPERTY_TYPE__RECTIFIED_GRID_COVERAGE:
setRectifiedGridCoverage((RectifiedGridCoverageType)null);
return;
}
super.eUnset(featureID);
}
示例7: marshalGridProperty
import net.opengis.gml.RectifiedGridCoverageType; //导入依赖的package包/类
public GridPropertyType marshalGridProperty(GridProperty src) {
GridPropertyType dest = dem.createGridPropertyType();
jaxb.getGMLMarshaller().marshalFeatureProperty(src, dest);
if (src.isSetRectifiedGridCoverage()) {
JAXBElement<?> elem = jaxb.marshalJAXBElement(src.getRectifiedGridCoverage());
if (elem != null && elem.getValue() instanceof RectifiedGridCoverageType)
dest.set_Object((JAXBElement<?>)elem);
}
return dest;
}
示例8: marshalGridProperty
import net.opengis.gml.RectifiedGridCoverageType; //导入依赖的package包/类
@SuppressWarnings("unchecked")
public GridPropertyType marshalGridProperty(GridProperty src) {
GridPropertyType dest = dem.createGridPropertyType();
if (src.isSetRectifiedGridCoverage()) {
JAXBElement<?> elem = jaxb.marshalJAXBElement(src.getRectifiedGridCoverage());
if (elem != null && elem.getValue() instanceof RectifiedGridCoverageType)
dest.set_Object((JAXBElement<? extends RectifiedGridCoverageType>)elem);
}
if (src.isSetGenericADEElement()) {
Element element = jaxb.getADEMarshaller().marshalDOMElement(src.getGenericADEElement());
if (element != null)
dest.set_ADEComponent(element);
}
if (src.isSetRemoteSchema())
dest.setRemoteSchema(src.getRemoteSchema());
if (src.isSetType())
dest.setType(TypeType.fromValue(src.getType().getValue()));
if (src.isSetHref())
dest.setHref(src.getHref());
if (src.isSetRole())
dest.setRole(src.getRole());
if (src.isSetArcrole())
dest.setArcrole(src.getArcrole());
if (src.isSetTitle())
dest.setTitle(src.getTitle());
if (src.isSetShow())
dest.setShow(ShowType.fromValue(src.getShow().getValue()));
if (src.isSetActuate())
dest.setActuate(ActuateType.fromValue(src.getActuate().getValue()));
return dest;
}
示例9: createGmlRectifiedGridCoverageType
import net.opengis.gml.RectifiedGridCoverageType; //导入依赖的package包/类
@Provides
@Override
public RectifiedGridCoverageType createGmlRectifiedGridCoverageType() {
return RectifiedGridCoverageType.Factory.newInstance();
}
示例10: getRectifiedGridCoverage
import net.opengis.gml.RectifiedGridCoverageType; //导入依赖的package包/类
/**
* Returns the value of the '<em><b>Rectified Grid Coverage</b></em>' containment reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Rectified Grid Coverage</em>' containment reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Rectified Grid Coverage</em>' containment reference.
* @see #setRectifiedGridCoverage(RectifiedGridCoverageType)
* @see net.opengis.citygml.relief.ReliefPackage#getGridPropertyType_RectifiedGridCoverage()
* @model containment="true"
* extendedMetaData="kind='element' name='RectifiedGridCoverage' namespace='http://www.opengis.net/gml'"
* @generated
*/
RectifiedGridCoverageType getRectifiedGridCoverage();
示例11: setRectifiedGridCoverage
import net.opengis.gml.RectifiedGridCoverageType; //导入依赖的package包/类
/**
* Sets the value of the '{@link net.opengis.citygml.relief.GridPropertyType#getRectifiedGridCoverage <em>Rectified Grid Coverage</em>}' containment reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Rectified Grid Coverage</em>' containment reference.
* @see #getRectifiedGridCoverage()
* @generated
*/
void setRectifiedGridCoverage(RectifiedGridCoverageType value);
示例12: getRectifiedGridCoverage
import net.opengis.gml.RectifiedGridCoverageType; //导入依赖的package包/类
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public RectifiedGridCoverageType getRectifiedGridCoverage() {
return rectifiedGridCoverage;
}
示例13: createGmlRectifiedGridCoverageType
import net.opengis.gml.RectifiedGridCoverageType; //导入依赖的package包/类
public RectifiedGridCoverageType createGmlRectifiedGridCoverageType();