All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.inspiresoftware.lib.dto.geda.examples.usecases.dsl.MyDtoField4Class Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
/*
 * 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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy