/* * citygml4j - The Open Source Java API for CityGML * https://github.com/citygml4j * * Copyright 2013-2017 Claus Nagel <claus.nagel@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.citygml4j.model.gml.base; import org.citygml4j.builder.copy.CopyBuilder; import org.citygml4j.model.common.base.ModelObject; import org.citygml4j.model.common.base.ModelType; import org.citygml4j.model.common.child.Child; import org.citygml4j.model.common.copy.Copyable; import org.citygml4j.model.gml.GMLClass; import org.citygml4j.model.gml.xlink.XLinkActuate; import org.citygml4j.model.gml.xlink.XLinkShow; import org.citygml4j.model.gml.xlink.XLinkType; public class StringOrRef implements AssociationAttributeGroup, Child, Copyable { private String value; private XLinkActuate actuate; private String arcrole; private String href; private String remoteSchema; private String role; private XLinkShow show; private String title; private XLinkType type; private ModelObject parent; public ModelType getModelType() { return ModelType.GML; } public GMLClass getGMLClass() { return GMLClass.STRING_OR_REF; } public String getValue() { return value; } public boolean isSetValue() { return value != null; } public void setValue(String value) { this.value = value; } public void unsetValue() { value = null; } public XLinkActuate getActuate() { return actuate; } public String getArcrole() { return arcrole; } public String getHref() { return href; } public String getRemoteSchema() { return remoteSchema; } public String getRole() { return role; } public XLinkShow getShow() { return show; } public String getTitle() { return title; } public XLinkType getType() { return type == null ? XLinkType.SIMPLE : type; } public boolean isSetActuate() { return actuate != null; } public boolean isSetArcrole() { return arcrole != null; } public boolean isSetHref() { return href != null; } public boolean isSetRemoteSchema() { return remoteSchema != null; } public boolean isSetRole() { return role != null; } public boolean isSetShow() { return show != null; } public boolean isSetTitle() { return title != null; } public boolean isSetType() { return type != null; } public void setActuate(XLinkActuate actuate) { this.actuate = actuate; } public void setArcrole(String arcrole) { this.arcrole = arcrole; } public void setHref(String href) { this.href = href; } public void setRemoteSchema(String remoteSchema) { this.remoteSchema = remoteSchema; } public void setRole(String role) { this.role = role; } public void setShow(XLinkShow show) { this.show = show; } public void setTitle(String title) { this.title = title; } public void setType(XLinkType type) { this.type = XLinkType.SIMPLE; } public void unsetActuate() { actuate = null; } public void unsetArcrole() { arcrole = null; } public void unsetHref() { href = null; } public void unsetRemoteSchema() { remoteSchema = null; } public void unsetRole() { role = null; } public void unsetShow() { show = null; } public void unsetTitle() { title = null; } public void unsetType() { type = null; } public Object copyTo(Object target, CopyBuilder copyBuilder) { StringOrRef copy = (target == null) ? new StringOrRef() : (StringOrRef)target; if (isSetValue()) copy.setValue(copyBuilder.copy(value)); if (isSetActuate()) copy.setActuate((XLinkActuate)copyBuilder.copy(actuate)); if (isSetArcrole()) copy.setArcrole(copyBuilder.copy(arcrole)); if (isSetHref()) copy.setHref(copyBuilder.copy(href)); if (isSetRemoteSchema()) copy.setRemoteSchema(copyBuilder.copy(remoteSchema)); if (isSetRole()) copy.setRole(copyBuilder.copy(role)); if (isSetShow()) copy.setShow((XLinkShow)copyBuilder.copy(show)); if (isSetTitle()) copy.setTitle(copyBuilder.copy(title)); if (isSetType()) copy.setType((XLinkType)copyBuilder.copy(type)); copy.unsetParent(); return copy; } public Object copy(CopyBuilder copyBuilder) { return copyTo(new StringOrRef(), copyBuilder); } public ModelObject getParent() { return parent; } public void setParent(ModelObject parent) { this.parent = parent; } public boolean isSetParent() { return parent != null; } public void unsetParent() { parent = null; } }