blob: c5bca069c6623974c4d7f92b3c16902dbe1e10b9 [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* 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:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.dsl.dto.lib;
@SuppressWarnings("serial")
public class CrossReference implements ICrossReferenceInfo {
private String target;
private Object id;
private String number;
private String description;
@Override
public String getTarget() {
return target;
}
@Override
public Object getId() {
return id;
}
@Override
public String getNumber() {
return number;
}
@Override
public String getDescription() {
return description;
}
}