Home | History | Annotate | Download | only in javassist

Lines Matching defs:string

31     protected String cachedStringRep;
52 public CtMethod(CtClass returnType, String mname,
56 String desc = Descriptor.ofMethod(returnType, parameters);
78 * <code>String</code> for <code>X</code>, then the created method is:
80 * <ul><pre>public String at(int i) {
81 * return (String)super.elementAt(i);
93 * <code>String.class</code>) is included in an expression, the
107 * @see ClassMap#fix(String)
124 * @see CtNewMethod#make(String, CtClass)
126 public static CtMethod make(String src, CtClass declaring)
169 final String getStringRep() {
188 * such as <code>javassist.CtMethod.setBody(String)</code>.
192 public String getLongName() {
200 public String getName() {
207 public void setName(String newname) {
267 * @see CtNewMethod#wrapped(CtClass,String,CtClass[],CtClass[],CtMethod,CtMethod.ConstParameter,CtClass)
305 * @see CtNewMethod#wrapped(CtClass,String,CtClass[],CtClass[],CtMethod,CtMethod.ConstParameter,CtClass)
328 * Makes an <code>String</code> constant.
332 public static ConstParameter string(String s) {
345 String descriptor() {
352 static String defaultDescriptor() {
361 String constDescriptor() {
368 static String defaultConstDescriptor() {
385 String descriptor() {
389 String constDescriptor() {
406 String descriptor() {
410 String constDescriptor() {
416 String param;
418 StringConstParameter(String s) {
427 String descriptor() {
428 return "([Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;";
431 String constDescriptor() {
432 return "([Ljava/lang/Object;Ljava/lang/String;)V";