52 lines
862 B
Java
52 lines
862 B
Java
/* */ package org.ui.syntaxes;
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */ public class Pair<A, B>
|
|
/* */ {
|
|
/* */ private A a;
|
|
/* */ private B b;
|
|
/* */
|
|
/* */ public Pair(A a, B b) {
|
|
/* 29 */ this.a = a;
|
|
/* 30 */ this.b = b;
|
|
/* */ }
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */ public final A getA() {
|
|
/* 37 */ return this.a;
|
|
/* */ }
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */
|
|
/* */ public final B getB() {
|
|
/* 44 */ return this.b;
|
|
/* */ }
|
|
/* */ }
|
|
|
|
|
|
/* Location: /home/teridax/Projects/Gytebot/GYTEBOT.jar!/org/ui/syntaxes/Pair.class
|
|
* Java compiler version: 8 (52.0)
|
|
* JD-Core Version: 1.1.3
|
|
*/ |