?? get_sub_category.java
字號:
/*
* Created on 2005-10-20
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package org.huihoo.openweb.uddi;
import java.io.IOException;
import java.io.InputStream;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
/**
* @author sky1
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class Get_Sub_Category extends UddiObject{
public Get_Sub_Category(InputStream is)
throws IOException, UDDIXmlException
{
super(is);
}
public Get_Sub_Category(UddiObject o)
{
doc = o.doc;
}
public String getTModelKeyValue()
throws UDDIXmlException
{
UddiObject object = this.getElement("keyValue");
if(object == null)
return null;
else
return object.getValue();
}
public String getTModelKey()
throws UDDIXmlException
{
UddiObject object= this.getElement("tModelKey");
if(object == null)
return null;
else
return object.getValue();
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -