com.inspiresoftware.lib.dto.geda.examples.usecases.dsl.MyDtoField4Class Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geda.examples Show documentation
Show all versions of geda.examples Show documentation
Provides several examples of use of GeDA
/*
* This code is distributed under The GNU Lesser General Public License (LGPLv3)
* Please visit GNU site for LGPLv3 http://www.gnu.org/copyleft/lesser.html
*
* Copyright Denis Pavlov 2009
* Web: http://www.genericdtoassembler.org
* SVN: https://svn.code.sf.net/p/geda-genericdto/code/trunk/
* SVN (mirror): http://geda-genericdto.googlecode.com/svn/trunk/
*/
package com.inspiresoftware.lib.dto.geda.examples.usecases.dsl;
import org.junit.Ignore;
/**
* User: denispavlov
* Date: 12-09-20
* Time: 3:47 PM
*/
@Ignore
public class MyDtoField4Class {
private Long id;
private String subField1;
public Long getId() {
return id;
}
public void setId(final Long id) {
this.id = id;
}
public String getSubField1() {
return subField1;
}
public void setSubField1(final String subField1) {
this.subField1 = subField1;
}
}