/******************************************************************************* * Copyright (c) 1998, 2015 Oracle and/or its affiliates. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Oracle - initial API and implementation from Oracle TopLink ******************************************************************************/ package org.eclipse.persistence.internal.oxm.schema.model; public class Group { private String name; private Choice choice; private Sequence sequence; private All all; private Annotation annotation; private String ref; private String minOccurs; private String maxOccurs; public Group() { } public void setChoice(Choice choice) { this.choice = choice; } public Choice getChoice() { return choice; } public void setSequence(Sequence sequence) { this.sequence = sequence; } public Sequence getSequence() { return sequence; } public void setAll(All all) { this.all = all; } public All getAll() { return all; } public void setAnnotation(Annotation annotation) { this.annotation = annotation; } public Annotation getAnnotation() { return annotation; } public void setRef(String ref) { this.ref = ref; } public String getRef() { return ref; } public void setMinOccurs(String minOccurs) { this.minOccurs = minOccurs; } public String getMinOccurs() { return minOccurs; } public void setMaxOccurs(String maxOccurs) { this.maxOccurs = maxOccurs; } public String getMaxOccurs() { return maxOccurs; } public void setName(String name) { this.name = name; } public String getName() { return name; } }