📄 resultelement.java
字号:
package oracle.otnsamples.ibfbs.admin.helper;/** * Generated by the Oracle9i JDeveloper Web Services Stub/Skeleton Generator. * Date Created: Sat Aug 02 18:29:25 IST 2003 * * <pre> * <xsd:complexType name="ResultElement"> * <xsd:all> * <xsd:element name="summary" type="xsd:string"/> * <xsd:element name="URL" type="xsd:string"/> * <xsd:element name="snippet" type="xsd:string"/> * <xsd:element name="title" type="xsd:string"/> * <xsd:element name="cachedSize" type="xsd:string"/> * <xsd:element name="relatedInformationPresent" type="xsd:boolean"/> * <xsd:element name="hostName" type="xsd:string"/> * <xsd:element name="directoryCategory" type="typens:DirectoryCategory"/> * <xsd:element name="directoryTitle" type="xsd:string"/> * </xsd:all> * </xsd:complexType> * </pre> */public class ResultElement { private String m_summary; private String m_URL; private String m_snippet; private String m_title; private String m_cachedSize; private Boolean m_relatedInformationPresent; private String m_hostName; private DirectoryCategory m_directoryCategory; private String m_directoryTitle; public ResultElement() { } public ResultElement(String summary, String URL, String snippet, String title, String cachedSize, Boolean relatedInformationPresent, String hostName, DirectoryCategory directoryCategory, String directoryTitle) { m_summary = summary; m_URL = URL; m_snippet = snippet; m_title = title; m_cachedSize = cachedSize; m_relatedInformationPresent = relatedInformationPresent; m_hostName = hostName; m_directoryCategory = directoryCategory; m_directoryTitle = directoryTitle; } public void setSummary(String summary) { m_summary = summary; } public String getSummary() { return m_summary; } public void setURL(String URL) { m_URL = URL; } public String getURL() { return m_URL; } public void setSnippet(String snippet) { m_snippet = snippet; } public String getSnippet() { return m_snippet; } public void setTitle(String title) { m_title = title; } public String getTitle() { return m_title; } public void setCachedSize(String cachedSize) { m_cachedSize = cachedSize; } public String getCachedSize() { return m_cachedSize; } public void setRelatedInformationPresent(Boolean relatedInformationPresent) { m_relatedInformationPresent = relatedInformationPresent; } public Boolean getRelatedInformationPresent() { return m_relatedInformationPresent; } public void setHostName(String hostName) { m_hostName = hostName; } public String getHostName() { return m_hostName; } public void setDirectoryCategory(DirectoryCategory directoryCategory) { m_directoryCategory = directoryCategory; } public DirectoryCategory getDirectoryCategory() { return m_directoryCategory; } public void setDirectoryTitle(String directoryTitle) { m_directoryTitle = directoryTitle; } public String getDirectoryTitle() { return m_directoryTitle; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -