pcw
/*****************************************************************************************************
* *
* PageCodeWorkArea *
* ---------------- *
* Title: XCC Verification Program *
* Version: 1 *
* Developer: Dr.Lou.31600 *
* Source Codes are the intellectual property of the author. *
* Generated by The Xcelious Programming Facility (XPF) using the XCC Blueprint. *
* *
*****************************************************************************************************/
package xcelious.blueprint.common;
import java.io.File;
import java.io.FileOutputStream;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
/******************************************************************************************************
* *
* PageCodeWorkArea *
* *
******************************************************************************************************/
public class PageCodeWorkArea
{
private File webDataFile;
private FileOutputStream webFOS;
private OutputStreamWriter webOSW;
private PrintWriter webFile;
private String panelCode = "";
/******************************************************************************************************
* *
* Constructor *
* *
******************************************************************************************************/
public PageCodeWorkArea()
{
}
/******************************************************************************************************
* *
* buildPanel *
* *
******************************************************************************************************/
public void buildPanel(String htmlCode)
{
panelCode = panelCode + htmlCode;
}
/******************************************************************************************************
* *
* Aggregators and Mutators *
* *
******************************************************************************************************/
public String getPanelCode()
{
return panelCode;
}
public void setPanelCode(String panelCode)
{
this.panelCode = panelCode;
}
public File getWebDataFile()
{
return webDataFile;
}
public void setWebDataFile(File webDataFile)
{
this.webDataFile = webDataFile;
}
public PrintWriter getWebFile()
{
return webFile;
}
public void setWebFile(PrintWriter webFile)
{
this.webFile = webFile;
}
public FileOutputStream getWebFOS()
{
return webFOS;
}
public void setWebFOS(FileOutputStream webFOS)
{
this.webFOS = webFOS;
}
public OutputStreamWriter getWebOSW()
{
return webOSW;
}
public void setWebOSW(OutputStreamWriter webOSW)
{
this.webOSW = webOSW;
}
}