samples/javabeans/src/org/apidesign/javabeans/toomany/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
     1 package org.apidesign.javabeans.toomany;
     2 
     3 public final class HighlightsSequence {
     4     public HighlightsSequence(int p1, int p2) {
     5     }
     6 
     7     //
     8     // package private getters, as they are needed only by infrastructure
     9     //
    10     int getP1() { return 0; }
    11     int getP2() { return 1; }
    12     
    13 }