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