blob: b757a000f9fa8c1da0d2236491f1b2d857311260 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 /*${java-package}*/;
import jakarta.inject.Named;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.apache.causeway.applib.annotation.DomainObject;
import org.apache.causeway.applib.annotation.Editing;
import org.apache.causeway.applib.annotation.Nature;
import org.apache.causeway.applib.annotation.Optionality;
import org.apache.causeway.applib.annotation.Property;
import org.apache.causeway.applib.annotation.PropertyLayout;
import org.apache.causeway.applib.annotation.Title;
import /*${showcase-fully-qualified-type}*/;
import lombok.Getter;
import lombok.Setter;
import demoapp.dom._infra.asciidocdesc.HasAsciiDocDescription;
import /*${showcase-java-package}*/.holder./*${showcase-name}*/Holder2;
//tag::class[]
@XmlRootElement(name = "root")
@XmlType
@XmlAccessorType(XmlAccessType.FIELD)
@Named("demo./*${showcase-name}*/Vm")
@DomainObject(
nature=Nature.VIEW_MODEL)
@lombok.NoArgsConstructor // <.>
public class /*${showcase-name}*/Vm
implements HasAsciiDocDescription, /*${showcase-name}*/Holder2 {
//end::class[]
public /*${showcase-name}*/Vm(final /*${showcase-simple-type}*/ initialValue) {
this.readOnlyProperty = initialValue;
this.readWriteProperty = initialValue;
}
//tag::class[]
@Title(prepend = "/*${showcase-simple-type}*/ view model: ")
@PropertyLayout(fieldSetId = "read-only-properties", sequence = "1")
/*${showcase-jaxb-adapter-type}*/@XmlElement(required = true) // <.>
@Getter @Setter
private /*${showcase-simple-type}*/ readOnlyProperty;
@Property(editing = Editing.ENABLED) // <.>
@PropertyLayout(fieldSetId = "editable-properties", sequence = "1")
/*${showcase-jaxb-adapter-type}*/@XmlElement(required = true)
@Getter @Setter
private /*${showcase-simple-type}*/ readWriteProperty;
@Property(optionality = Optionality.OPTIONAL) // <.>
@PropertyLayout(fieldSetId = "optional-properties", sequence = "1")
/*${showcase-jaxb-adapter-type}*/@Getter @Setter
private /*${showcase-simple-type}*/ readOnlyOptionalProperty;
@Property(editing = Editing.ENABLED, optionality = Optionality.OPTIONAL)
@PropertyLayout(fieldSetId = "optional-properties", sequence = "2")
/*${showcase-jaxb-adapter-type}*/@Getter @Setter
private /*${showcase-simple-type}*/ readWriteOptionalProperty;
}
//end::class[]