| Home >> All >> com >> port80 >> util >> [ struct Javadoc ] |
Source code: com/port80/util/struct/IntPair.java
1 // 2 // Copyright(c) 2002, Chris Leung 3 // 4 5 package com.port80.util.struct; 6 7 /** Wrapper class to hold two values. 8 */ 9 public class IntPair { 10 public int first; 11 public int second; 12 }