
com.github.talberto.easybeans.gen.MetaClass Maven / Gradle / Ivy
The newest version!
/**
* Copyright 2014 Tomas Rodriguez
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.talberto.easybeans.gen;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Set;
/**
*
* @author Tomás Rodríguez ([email protected])
*
*/
public class MetaClass {
Set mImports = new HashSet();
String mName;
List mInstanceVariables = new LinkedList();
List mGetters = new LinkedList();
List mSetters = new LinkedList();
public MetaClass(String pName, List pInstanceVariables, List pGetters, List pSetters, Set pImports) {
mName = pName;
mInstanceVariables = pInstanceVariables;
mGetters = pGetters;
mSetters = pSetters;
mImports = pImports;
}
public Set getImports() {
return mImports;
}
public String getName() {
return mName;
}
public List getInstanceVariables() {
return mInstanceVariables;
}
public List getGetters() {
return mGetters;
}
public List getSetters() {
return mSetters;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy