samples/javabeans/src/org/apidesign/javabeans/without/HighlightsSequence.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 03 Apr 2020 16:32:36 +0200
changeset 416 9ed8788a1a4e
permissions -rw-r--r--
Using HTTPS to download the libraries
     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 }