samples/javabeans/src/org/apidesign/javabeans/with/HighlightsSequence.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 14 Jun 2008 09:54:22 +0200
changeset 102 461397695234
permissions -rw-r--r--
Examples from JavaBeans specification moved out of the XML text
jtulach@102
     1
package org.apidesign.javabeans.with;
jtulach@102
     2
jtulach@102
     3
public final class HighlightsSequence {
jtulach@102
     4
    public HighlightsSequence(int p1, int p2) {
jtulach@102
     5
    }
jtulach@102
     6
jtulach@102
     7
    //
jtulach@102
     8
    // package private getters, as they are needed only by infrastructure
jtulach@102
     9
    //
jtulach@102
    10
    int getP1() { return 0; }
jtulach@102
    11
    int getP2() { return 1; }
jtulach@102
    12
    
jtulach@102
    13
}