samples/javabeans/src/org/apidesign/javabeans/with/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.with;
     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 }