本文整理汇总了Java中org.citygml4j.model.gml.measures.Length.setParent方法的典型用法代码示例。如果您正苦于以下问题:Java Length.setParent方法的具体用法?Java Length.setParent怎么用?Java Length.setParent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.citygml4j.model.gml.measures.Length
的用法示例。
在下文中一共展示了Length.setParent方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setDistanceCarriageway
import org.citygml4j.model.gml.measures.Length; //导入方法依赖的package包/类
public void setDistanceCarriageway(Length distanceCarriageway) {
if (distanceCarriageway != null)
distanceCarriageway.setParent(this);
this.distanceCarriageway = distanceCarriageway;
}
示例2: setDistanceD
import org.citygml4j.model.gml.measures.Length; //导入方法依赖的package包/类
public void setDistanceD(Length distanceD) {
if (distanceD != null)
distanceD.setParent(this);
this.distanceD = distanceD;
}
示例3: setCurveRadius
import org.citygml4j.model.gml.measures.Length; //导入方法依赖的package包/类
public void setCurveRadius(Length curveRadius) {
if (curveRadius != null)
curveRadius.setParent(this);
this.curveRadius = curveRadius;
}
示例4: setLengthDay
import org.citygml4j.model.gml.measures.Length; //导入方法依赖的package包/类
public void setLengthDay(Length lengthDay) {
if (lengthDay != null)
lengthDay.setParent(this);
this.lengthDay = lengthDay;
}
示例5: setLengthEvening
import org.citygml4j.model.gml.measures.Length; //导入方法依赖的package包/类
public void setLengthEvening(Length lengthEvening) {
if (lengthEvening != null)
lengthEvening.setParent(this);
this.lengthEvening = lengthEvening;
}
示例6: setLengthNight
import org.citygml4j.model.gml.measures.Length; //导入方法依赖的package包/类
public void setLengthNight(Length lengthNight) {
if (lengthNight != null)
lengthNight.setParent(this);
this.lengthNight = lengthNight;
}
示例7: setHeight
import org.citygml4j.model.gml.measures.Length; //导入方法依赖的package包/类
public void setHeight(Length height) {
if (height != null)
height.setParent(this);
this.height = height;
}
示例8: setDistance
import org.citygml4j.model.gml.measures.Length; //导入方法依赖的package包/类
public void setDistance(Length distance) {
if (distance != null)
distance.setParent(this);
this.distance = distance;
}
示例9: setMeasuredHeight
import org.citygml4j.model.gml.measures.Length; //导入方法依赖的package包/类
public void setMeasuredHeight(Length measuredHeight) {
if (measuredHeight != null)
measuredHeight.setParent(this);
this.measuredHeight = measuredHeight;
}
示例10: setAverageHeight
import org.citygml4j.model.gml.measures.Length; //导入方法依赖的package包/类
public void setAverageHeight(Length averageHeight) {
if (averageHeight != null)
averageHeight.setParent(this);
this.averageHeight = averageHeight;
}
示例11: setCrownDiameter
import org.citygml4j.model.gml.measures.Length; //导入方法依赖的package包/类
public void setCrownDiameter(Length crownDiameter) {
if (crownDiameter != null)
crownDiameter.setParent(this);
this.crownDiameter = crownDiameter;
}
示例12: setTrunkDiameter
import org.citygml4j.model.gml.measures.Length; //导入方法依赖的package包/类
public void setTrunkDiameter(Length trunkDiameter) {
if (trunkDiameter != null)
trunkDiameter.setParent(this);
this.trunkDiameter = trunkDiameter;
}
示例13: setMaxLength
import org.citygml4j.model.gml.measures.Length; //导入方法依赖的package包/类
public void setMaxLength(Length maxLength) {
if (maxLength != null)
maxLength.setParent(this);
this.maxLength = maxLength;
}