samples/incompatibilities/src-wildimport/org/apidesign/stringandbuffer/DoubleReturnType.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sun, 12 Aug 2012 14:14:44 +0200
changeset 400 f0a7e800323c
parent 137 a6ae66ce006d
permissions -rw-r--r--
Use indentation four
jtulach@137
     1
package org.apidesign.stringandbuffer;
jtulach@137
     2
jtulach@137
     3
// BEGIN: theory.stringandbuffer
jtulach@137
     4
/** This is not Java code, but it is fine inside the bytecode */
jtulach@137
     5
public abstract class DoubleReturnType {
jtulach@400
     6
    public abstract String getName(int x);
jtulach@400
     7
    public abstract StringBuffer getName(int x);
jtulach@137
     8
}
jtulach@137
     9
// END: theory.stringandbuffer