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
author=Eric Knapp | |
[email protected] | |
application.name=FileCruncher | |
#output directory | |
output.dir=output/ | |
#Analyzer Output File Names | |
output.file.summary=summary_report.txt | |
output.file.unique=unique_tokens.txt |
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
CoreDataStart | |
http://dl.dropbox.com/u/16988659/CoreDataStart.tgz |
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
<%@ page import="java.util.*" %> | |
<%@ page import="java.util.*,java.io.*, java112.employees" %> |
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
http://dl.dropbox.com/u/16988659/junit.jar |
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
#! /bin/sh | |
clear; | |
java -classpath classes:config:lib/junit.jar:lib/java112AnalyzerTests.jar \ | |
org.junit.runner.JUnitCore \ | |
java112.tests.AnalyzerDriverTest \ | |
java112.tests.SummaryReportTest \ | |
java112.tests.SummaryReportOutputTest \ | |
java112.tests.UniqueTokenAnalyzerOutputTest \ |
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
#analyzer.properties | |
author=Eric Knapp | |
[email protected] | |
application.name=FileCruncher | |
#output directory | |
output.dir=output/ |
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 java112.labs2; | |
import java.util.*; | |
/** | |
* @author Eric Knapp | |
* class MapDemo | |
* | |
*/ | |
public class MapDemo { |
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 java112.labs2; | |
import java.util.*; | |
/** | |
* @author Eric Knapp | |
* class SetList | |
* | |
*/ | |
public class SetList { |
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 java112.labs2; | |
import java.util.*; | |
/** | |
* @author Eric Knapp | |
* class SetList | |
* | |
*/ | |
public class SetList { |
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
NSHTTPCookieStorage *cookieStorage = [NSHTTPCookieStorage sharedHTTPCookieStorage]; | |
[cookieStorage setCookieAcceptPolicy:NSHTTPCookieAcceptPolicyAlways]; |