This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.kristopherjohnson.util; | |
| import java.text.DateFormat; | |
| import java.text.SimpleDateFormat; | |
| import java.util.Date; | |
| import java.util.Locale; | |
| import java.util.TimeZone; | |
| /** | |
| * Methods for dealing with timestamps |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| textarea { | |
| height: 200px; | |
| width: 200px; | |
| } | |
| div.overlay { | |
| z-index: 200; | |
| height: 200px; | |
| width: 200px; | |
| position: absolute; | |
| left: 517px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import static java.lang.System.out; | |
| import static java.util.Arrays.asList; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import org.apache.commons.collections.CollectionUtils; | |
| import org.apache.commons.collections.Predicate; | |
| public class ListTests { | |
| public static void main( String[] args ) { | |
| List<String> names = asList( "Ted", "Fred", "Jed", "Ned" ); |
NewerOlder