本文整理匯總了Java中org.citygml4j.model.citygml.waterbody.WaterClosureSurface.isSetGenericApplicationPropertyOfWaterClosureSurface方法的典型用法代碼示例。如果您正苦於以下問題:Java WaterClosureSurface.isSetGenericApplicationPropertyOfWaterClosureSurface方法的具體用法?Java WaterClosureSurface.isSetGenericApplicationPropertyOfWaterClosureSurface怎麽用?Java WaterClosureSurface.isSetGenericApplicationPropertyOfWaterClosureSurface使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.citygml4j.model.citygml.waterbody.WaterClosureSurface
的用法示例。
在下文中一共展示了WaterClosureSurface.isSetGenericApplicationPropertyOfWaterClosureSurface方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: visit
import org.citygml4j.model.citygml.waterbody.WaterClosureSurface; //導入方法依賴的package包/類
public void visit(WaterClosureSurface waterClosureSurface) {
visit((AbstractWaterBoundarySurface)waterClosureSurface);
if (waterClosureSurface.isSetGenericApplicationPropertyOfWaterClosureSurface())
for (ADEComponent ade : waterClosureSurface.getGenericApplicationPropertyOfWaterClosureSurface())
visit(ade);
}
示例2: apply
import org.citygml4j.model.citygml.waterbody.WaterClosureSurface; //導入方法依賴的package包/類
public T apply(WaterClosureSurface waterClosureSurface) {
T object = apply((AbstractWaterBoundarySurface)waterClosureSurface);
if (object != null)
return object;
if (waterClosureSurface.isSetGenericApplicationPropertyOfWaterClosureSurface()) {
for (ADEComponent ade : new ArrayList<ADEComponent>(waterClosureSurface.getGenericApplicationPropertyOfWaterClosureSurface())) {
object = apply(ade);
if (object != null)
return object;
}
}
return null;
}
示例3: visit
import org.citygml4j.model.citygml.waterbody.WaterClosureSurface; //導入方法依賴的package包/類
public void visit(WaterClosureSurface waterClosureSurface) {
visit((AbstractWaterBoundarySurface)waterClosureSurface);
if (waterClosureSurface.isSetGenericApplicationPropertyOfWaterClosureSurface())
for (ADEComponent ade : new ArrayList<ADEComponent>(waterClosureSurface.getGenericApplicationPropertyOfWaterClosureSurface()))
visit(ade);
}
示例4: marshalWaterClosureSurface
import org.citygml4j.model.citygml.waterbody.WaterClosureSurface; //導入方法依賴的package包/類
public void marshalWaterClosureSurface(WaterClosureSurface src, WaterClosureSurfaceType dest) {
marshalAbstractWaterBoundarySurface(src, dest);
if (src.isSetGenericApplicationPropertyOfWaterClosureSurface()) {
for (ADEComponent adeComponent : src.getGenericApplicationPropertyOfWaterClosureSurface()) {
JAXBElement<Object> jaxbElement = jaxb.getADEMarshaller().marshalJAXBElement(adeComponent);
if (jaxbElement != null)
dest.get_GenericApplicationPropertyOfWaterClosureSurface().add(jaxbElement);
}
}
}