package com.rthoni.intellij.codefromds.dbo.template; import java.util.List; import java.util.Vector; /** * Created by robin on 4/13/17. */ public class StoredProcedureDbo { private String _name; private List _arguments = new Vector<>(); private SqlTypeDbo _type; private boolean _isSelected; private String _fullName; public String getName() { return _name; } public void setName(String name) { _name = name; } public List getArguments() { return _arguments; } public void addArgument(StoredProcedureArgDbo arguments) { _arguments.add(arguments); } public SqlTypeDbo getType() { return _type; } public void setType(SqlTypeDbo type) { _type = type; } public boolean isSelected() { return _isSelected; } public void setSelected(boolean selected) { _isSelected = selected; } public String getFullName() { return _fullName; } public void setFullName(String fullName) { _fullName = fullName; } }