blob: 5385c0ede28f1b060808854fed629ba2a0e99db8 [file] [log] [blame]
/**
*
* Copyright (c) 2011, 2016 - 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:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*
*/
package org.eclipse.osbp.sample.item.dtos;
import org.eclipse.osbp.sample.item.dtos.BaseUUIDDto;
import java.beans.PropertyChangeListener;
import java.io.Serializable;
import org.eclipse.osbp.dsl.common.datatypes.IDto;
import org.eclipse.osbp.dsl.dto.lib.MappingContext;
import org.eclipse.osbp.runtime.common.annotations.Dispose;
@SuppressWarnings("all")
public class ItemDto extends BaseUUIDDto implements IDto, Serializable, PropertyChangeListener {
private String number;
private String description;
/**
* Checks whether the object is disposed.
* @throws RuntimeException if the object is disposed.
*/
private void checkDisposed() {
if (isDisposed()) {
throw new RuntimeException("Object already disposed: " + this);
}
}
/**
* Calling dispose will destroy that instance. The internal state will be
* set to 'disposed' and methods of that object must not be used anymore.
* Each call will result in runtime exceptions.<br/>
* If this object keeps composition containments, these will be disposed too.
* So the whole composition containment tree will be disposed on calling this method.
*/
@Dispose
public void dispose() {
if (isDisposed()) {
return;
}
super.dispose();
}
/**
* Returns the number property or <code>null</code> if not present.
*/
public String getNumber() {
return this.number;
}
/**
* Sets the <code>number</code> property to this instance.
*
* @param number - the property
* @throws RuntimeException if instance is <code>disposed</code>
*
*/
public void setNumber(final String number) {
firePropertyChange("number", this.number, this.number = number );
}
/**
* Returns the description property or <code>null</code> if not present.
*/
public String getDescription() {
return this.description;
}
/**
* Sets the <code>description</code> property to this instance.
*
* @param description - the property
* @throws RuntimeException if instance is <code>disposed</code>
*
*/
public void setDescription(final String description) {
firePropertyChange("description", this.description, this.description = description );
}
public ItemDto createDto() {
return new ItemDto();
}
}