Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,57 +38,69 @@

@Dependent
@Named( "workflow-formspdf.formsPDFTaskTemplate" )
public class FormsPDFTaskTemplate {
public class FormsPDFTaskTemplate
{

private int _nId;
private int _nId;

private String _strName;

private int _nIdForm;

private boolean _bGeneric;
private String _strName;

private String _strContent;
private int _nIdForm;

private boolean _isRte;
private boolean _bGeneric;

private String _strFileName;
private String _strContent;

public int getId() {
return _nId;
}
private boolean _isRte;

public void setId(int nId) {
this._nId = nId;
}
private String _strFileName;

public String getName() {
return _strName;
}
private boolean _isReplaceEmpty;

public void setName(String strName) {
this._strName = strName;
}
public int getId( )
{
return _nId;
}

public String getContent() {
return _strContent;
}
public void setId( int nId )
{
this._nId = nId;
}

public String getName( )
{
return _strName;
}

public void setName( String strName )
{
this._strName = strName;
}

public String getContent( )
{
return _strContent;
}

public void setContent(String strContent) {
this._strContent = strContent;
}
public void setContent( String strContent )
{
this._strContent = strContent;
}

public int getIdForm() {
return _nIdForm;
}
public int getIdForm( )
{
return _nIdForm;
}

public void setIdForm(int nIdForm) {
this._nIdForm = nIdForm;
}
public void setIdForm( int nIdForm )
{
this._nIdForm = nIdForm;
}

public boolean isGeneric() {
return _bGeneric;
}
public boolean isGeneric( )
{
return _bGeneric;
}

public void setGeneric( boolean bGeneric )
{
Expand All @@ -115,4 +127,13 @@ public void setFileName( String strFileName )
this._strFileName = strFileName;
}

public boolean isReplaceEmpty( )
{
return _isReplaceEmpty;
}

public void setReplaceEmpty( boolean _isReplaceEmpty )
{
this._isReplaceEmpty = _isReplaceEmpty;
}
}
Loading