Package com.sun.xml.rpc.processor.util
Class GeneratedFileInfo
- java.lang.Object
-
- com.sun.xml.rpc.processor.util.GeneratedFileInfo
-
- All Implemented Interfaces:
GeneratedFileInfo
public class GeneratedFileInfo extends Object implements GeneratedFileInfo
A container to hold info on the files that get generated.- Author:
- JAX-RPC Development Team
-
-
Constructor Summary
Constructors Constructor Description GeneratedFileInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description File
getFile()
Gets the file that got addedString
getType()
Get the file type that got addedvoid
setFile(File file)
Adds the file object to the containervoid
setType(String type)
Adds the type of file it is the container
-
-
-
Method Detail
-
setFile
public void setFile(File file)
Adds the file object to the container- Parameters:
file
- instance of the file to be added
-
setType
public void setType(String type)
Adds the type of file it is the container- Parameters:
type
- string which specifies the type
-
getFile
public File getFile()
Gets the file that got added- Specified by:
getFile
in interfaceGeneratedFileInfo
- Returns:
- File instance
-
getType
public String getType()
Get the file type that got added- Specified by:
getType
in interfaceGeneratedFileInfo
- Returns:
- File type of datatype String
-
-