This file contains 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 java.util.Arrays; | |
import java.util.List; | |
import java.util.logging.Logger; | |
import org.timo.paginator.ListProvider; | |
import org.timo.paginator.Paginator; | |
import org.timo.paginator.Segment; | |
import org.timo.paginator.SegmentProvider; | |
/** |
This file contains 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
# | |
# This is the config file, and | |
# a '#' or ';' character indicates | |
# a comment | |
# | |
; core variables | |
[core] | |
; Don't trust file modes | |
filemode = false |
This file contains 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 org.timo.gitconfig; | |
import java.io.IOException; | |
import java.util.logging.Logger; | |
public class GitConfigurationExample { | |
private static final Logger LOG = Logger | |
.getLogger(GitConfigurationExample.class.getName()); |
This file contains 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 org.uagrm.addressbook.util; | |
import java.lang.reflect.Constructor; | |
import java.util.HashMap; | |
import java.util.Map; | |
/** | |
* Generic factory cache component, which binds an specific class definition | |
* with a class instance. It provides caching and creation facilities. Note: All | |
* bind classes should use classes(Boolean) as constructor parameters, native |
NewerOlder