blob: 9cd4f3456a3cafa93f7638252cafaf5b0a29c04f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 Boeing.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.define.report.api;
import javax.xml.bind.annotation.XmlRootElement;
/**
* @author Angel Avila
*/
@XmlRootElement
public class DataRightAnchor {
private String id;
private DataRightId dataRightId;
private boolean isSetDataRightFooter = false;
private boolean isContinuous = false;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public DataRightId getDataRightId() {
return dataRightId;
}
public void setDataRightId(DataRightId rightId) {
this.dataRightId = rightId;
}
public boolean isSetDataRightFooter() {
return isSetDataRightFooter;
}
public void setSetDataRightFooter(boolean isSetDataRightFooter) {
this.isSetDataRightFooter = isSetDataRightFooter;
}
public boolean isContinuous() {
return isContinuous;
}
public void setContinuous(boolean isContinuous) {
this.isContinuous = isContinuous;
}
}