當前位置: 首頁>>代碼示例>>Java>>正文


Java Track.getGenericApplicationPropertyOfTrack方法代碼示例

本文整理匯總了Java中org.citygml4j.model.citygml.transportation.Track.getGenericApplicationPropertyOfTrack方法的典型用法代碼示例。如果您正苦於以下問題:Java Track.getGenericApplicationPropertyOfTrack方法的具體用法?Java Track.getGenericApplicationPropertyOfTrack怎麽用?Java Track.getGenericApplicationPropertyOfTrack使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.citygml4j.model.citygml.transportation.Track的用法示例。


在下文中一共展示了Track.getGenericApplicationPropertyOfTrack方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: visit

import org.citygml4j.model.citygml.transportation.Track; //導入方法依賴的package包/類
public void visit(Track track) {
	visit((TransportationComplex)track);

	if (track.isSetGenericApplicationPropertyOfTrack())
		for (ADEComponent ade : track.getGenericApplicationPropertyOfTrack())
			visit(ade);
}
 
開發者ID:3dcitydb,項目名稱:importer-exporter,代碼行數:8,代碼來源:ADEPropertyCollector.java

示例2: apply

import org.citygml4j.model.citygml.transportation.Track; //導入方法依賴的package包/類
public T apply(Track track) {
	T object = apply((TransportationComplex)track);
	if (object != null)
		return object;

	if (track.isSetGenericApplicationPropertyOfTrack()) {
		for (ADEComponent ade : new ArrayList<ADEComponent>(track.getGenericApplicationPropertyOfTrack())) {
			object = apply(ade);
			if (object != null)
				return object;
		}
	}

	return null;
}
 
開發者ID:citygml4j,項目名稱:citygml4j,代碼行數:16,代碼來源:GMLFunctionWalker.java

示例3: visit

import org.citygml4j.model.citygml.transportation.Track; //導入方法依賴的package包/類
public void visit(Track track) {
	visit((TransportationComplex)track);

	if (track.isSetGenericApplicationPropertyOfTrack())
		for (ADEComponent ade : new ArrayList<ADEComponent>(track.getGenericApplicationPropertyOfTrack()))
			visit(ade);
}
 
開發者ID:citygml4j,項目名稱:citygml4j,代碼行數:8,代碼來源:GMLWalker.java

示例4: marshalTrack

import org.citygml4j.model.citygml.transportation.Track; //導入方法依賴的package包/類
public void marshalTrack(Track src, TrackType dest) {
	marshalTransportationComplex(src, dest);

	if (src.isSetGenericApplicationPropertyOfTrack()) {
		for (ADEComponent adeComponent : src.getGenericApplicationPropertyOfTrack()) {
			JAXBElement<Object> jaxbElement = jaxb.getADEMarshaller().marshalJAXBElement(adeComponent);
			if (jaxbElement != null)
				dest.get_GenericApplicationPropertyOfTrack().add(jaxbElement);
		}
	}
}
 
開發者ID:citygml4j,項目名稱:citygml4j,代碼行數:12,代碼來源:Transportation200Marshaller.java


注:本文中的org.citygml4j.model.citygml.transportation.Track.getGenericApplicationPropertyOfTrack方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。