X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fgeneral%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fgeneral%2FPair.java;h=dd78180f6b6fbd8446fe58d59ca2b24e810ac51c;hb=26805fc0810098c4bd8009a35c8719478e74153e;hp=2d90387fb3bc8e642522e3f91e2daaea7c324c7a;hpb=dc05aae40ab88d4224d37f53c35d516107a3b031;p=utils diff --git a/support/general/src/main/java/org/wamblee/general/Pair.java b/support/general/src/main/java/org/wamblee/general/Pair.java index 2d90387f..dd78180f 100644 --- a/support/general/src/main/java/org/wamblee/general/Pair.java +++ b/support/general/src/main/java/org/wamblee/general/Pair.java @@ -1,8 +1,5 @@ - - - /* - * Copyright 2005 the original author or authors. + * Copyright 2005-2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -26,14 +23,12 @@ package org.wamblee.general; * Type of the first object. * @param * Type of the second object. - * + * * @author Erik Brakkee */ public class Pair { - - private T _t; - - private U _u; + private T t; + private U u; /** * Constructs the pair. @@ -44,8 +39,8 @@ public class Pair { * Second object. */ public Pair(T aT, U aU) { - _t = aT; - _u = aU; + t = aT; + u = aU; } /** @@ -55,8 +50,8 @@ public class Pair { * Pair to copy. */ public Pair(Pair aPair) { - _t = aPair._t; - _u = aPair._u; + t = aPair.t; + u = aPair.u; } /** @@ -65,7 +60,7 @@ public class Pair { * @return First object. */ public T getFirst() { - return _t; + return t; } /** @@ -74,7 +69,6 @@ public class Pair { * @return Second object. */ public U getSecond() { - return _u; + return u; } - }