本文整理汇总了Java中com.sun.tools.corba.se.idl.AttributeEntry.readOnly方法的典型用法代码示例。如果您正苦于以下问题:Java AttributeEntry.readOnly方法的具体用法?Java AttributeEntry.readOnly怎么用?Java AttributeEntry.readOnly使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.sun.tools.corba.se.idl.AttributeEntry
的用法示例。
在下文中一共展示了AttributeEntry.readOnly方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: interfaceMethod
import com.sun.tools.corba.se.idl.AttributeEntry; //导入方法依赖的package包/类
/**
*
**/
protected void interfaceMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream)
{
AttributeEntry a = (AttributeEntry)m;
// Generate for the get method
super.interfaceMethod (symbolTable, a, stream);
// Generate for the set method if the attribute is not readonly
if (!a.readOnly ())
{
setupForSetMethod ();
super.interfaceMethod (symbolTable, a, stream);
clear ();
}
}
示例2: stub
import com.sun.tools.corba.se.idl.AttributeEntry; //导入方法依赖的package包/类
/**
*
**/
protected void stub (String className, boolean isAbstract, Hashtable symbolTable, MethodEntry m, PrintWriter stream, int index)
{
AttributeEntry a = (AttributeEntry)m;
// Generate for the get method
super.stub (className, isAbstract, symbolTable, a, stream, index);
// Generate for the set method if the attribute is not readonly
if (!a.readOnly ())
{
setupForSetMethod ();
super.stub (className, isAbstract, symbolTable, a, stream, index + 1);
clear ();
}
}
示例3: skeleton
import com.sun.tools.corba.se.idl.AttributeEntry; //导入方法依赖的package包/类
/**
*
**/
protected void skeleton (Hashtable symbolTable, MethodEntry m, PrintWriter stream, int index)
{
AttributeEntry a = (AttributeEntry)m;
// Generate for the get method
super.skeleton (symbolTable, a, stream, index);
// Generate for the set method if the attribute is not readonly
if (!a.readOnly ())
{
setupForSetMethod ();
super.skeleton (symbolTable, a, stream, index + 1);
clear ();
}
}
示例4: dispatchSkeleton
import com.sun.tools.corba.se.idl.AttributeEntry; //导入方法依赖的package包/类
/**
*
**/
protected void dispatchSkeleton (Hashtable symbolTable, MethodEntry m, PrintWriter stream, int index)
{
AttributeEntry a = (AttributeEntry)m;
// Generate for the get method
super.dispatchSkeleton (symbolTable, a, stream, index);
// Generate for the set method if the attribute is not readonly
if (!a.readOnly ())
{
setupForSetMethod ();
super.dispatchSkeleton (symbolTable, m, stream, index + 1);
clear ();
}
}
示例5: abstractMethod
import com.sun.tools.corba.se.idl.AttributeEntry; //导入方法依赖的package包/类
/**
* <d62023-klr> Added for 2.4 RTF
**/
protected void abstractMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream)
{
AttributeEntry a = (AttributeEntry)m;
// Generate for the get method
super.abstractMethod (symbolTable, a, stream);
// Generate for the set method if the attribute is not readonly
if (!a.readOnly ())
{
setupForSetMethod ();
super.abstractMethod (symbolTable, a, stream);
clear ();
}
}
示例6: interfaceMethod
import com.sun.tools.corba.se.idl.AttributeEntry; //导入方法依赖的package包/类
/**
* <d62023-klr> Added for 2.4 RTF
**/
protected void interfaceMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream)
{
AttributeEntry a = (AttributeEntry)m;
// Generate for the get method
super.interfaceMethod (symbolTable, a, stream);
// Generate for the set method if the attribute is not readonly
if (!a.readOnly ())
{
setupForSetMethod ();
super.interfaceMethod (symbolTable, a, stream);
clear ();
}
}
示例7: abstractMethod
import com.sun.tools.corba.se.idl.AttributeEntry; //导入方法依赖的package包/类
/**
* (d62023-klr) Added for 2.4 RTF
**/
protected void abstractMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream)
{
AttributeEntry a = (AttributeEntry)m;
// Generate for the get method
super.abstractMethod (symbolTable, a, stream);
// Generate for the set method if the attribute is not readonly
if (!a.readOnly ())
{
setupForSetMethod ();
super.abstractMethod (symbolTable, a, stream);
clear ();
}
}
示例8: interfaceMethod
import com.sun.tools.corba.se.idl.AttributeEntry; //导入方法依赖的package包/类
/**
* (d62023-klr) Added for 2.4 RTF
**/
protected void interfaceMethod (Hashtable symbolTable, MethodEntry m, PrintWriter stream)
{
AttributeEntry a = (AttributeEntry)m;
// Generate for the get method
super.interfaceMethod (symbolTable, a, stream);
// Generate for the set method if the attribute is not readonly
if (!a.readOnly ())
{
setupForSetMethod ();
super.interfaceMethod (symbolTable, a, stream);
clear ();
}
}