Back to project page MultiWork.
The source code is released under:
Copyright (c) 2013, Torti Andr?s Fernando All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions a...
If you think the Android project MultiWork listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.utils.andres; // w w w .j av a2 s . co m public class Pair<T, K> { T p1; K p2; public Pair(T p1, K p2) { this.p1 = p1; this.p2 = p2; } public T getFirst(){ return p1; } public K getSecond(){ return p2; } }