blob: d8b4b42c18e693fa68820227e318c0e78ce9bf06 [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.DetailsDto;
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 TelevisionDetails2Dto extends DetailsDto implements IDto, Serializable, PropertyChangeListener {
private String madeIn;
/**
* 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 madeIn property or <code>null</code> if not present.
*/
public String getMadeIn() {
return this.madeIn;
}
/**
* Sets the <code>madeIn</code> property to this instance.
*
* @param madeIn - the property
* @throws RuntimeException if instance is <code>disposed</code>
*
*/
public void setMadeIn(final String madeIn) {
firePropertyChange("madeIn", this.madeIn, this.madeIn = madeIn );
}
public TelevisionDetails2Dto createDto() {
return new TelevisionDetails2Dto();
}
}