Skip to content

Commit

Permalink
spaces —> tabs for interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Emily Curtin committed Mar 2, 2017
1 parent afaf5db commit 2f92ef7
Show file tree
Hide file tree
Showing 25 changed files with 26 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ public interface FizzBuzz {

/**
* @param nFizzBuzzUpperLimit
*/
*/
void fizzBuzz(int nFizzBuzzUpperLimit);

}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public interface FizzBuzzOutputStrategyFactory {

/**
* @return
*/
*/
public FizzBuzzOutputStrategy createOutputStrategy();

}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public interface FizzBuzzSolutionStrategyFactory {

/**
* @return
*/
*/
public FizzBuzzSolutionStrategy createFizzBuzzSolutionStrategy();

}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public interface IntegerPrinterFactory {

/**
* @return
*/
*/
public IntegerPrinter createPrinter();

}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public interface IntegerStringReturnerFactory {

/**
* @return
*/
*/
public IntegerStringReturner createIntegerStringReturner();

}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public interface IsEvenlyDivisibleStrategyFactory {

/**
* @return
*/
*/
public IsEvenlyDivisibleStrategy createIsEvenlyDivisibleStrategy();

}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public interface OutputGenerationContextVisitorFactory {

/**
* @return
*/
*/
public OutputGenerationContextVisitor createVisitor();

}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public interface StringPrinterFactory {

/**
* @return
*/
*/
public StringPrinter createStringPrinter();

}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public interface StringStringReturnerFactory {

/**
* @return
*/
*/
public StringStringReturner createStringStringReturner();

}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public interface LoopContextStateManipulation {

/**
* @return
*/
*/
public boolean shouldProceed();

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ public interface LoopContextStateRetrieval {

/**
* @return
*/
*/
public int getControlParameter();

}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ public interface LoopPayloadExecution {

/**
* @param stateRetrieval
*/
*/
public void runLoopPayload(LoopContextStateRetrieval stateRetrieval);

}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ public interface FizzBuzzUpperLimitParameter {

/**
* @return
*/
*/
public int obtainUpperLimitValue();

}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public interface DataPrinter {

/**
* @param value
*/
*/
public void printValue(Object value);

}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ public interface IntegerPrinter extends DataPrinter {

/**
* @param theInteger
*/
*/
public void printInteger(int theInteger);

}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ public interface FizzBuzzExceptionSafeOutputStrategy {

/**
* @param output
*/
*/
public void output(String output);

}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public interface FizzBuzzOutputStrategy {
/**
* @param output
* @throws IOException
*/
*/
public void output(String output) throws IOException;

}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ public interface FizzBuzzSolutionStrategy {

/**
* @param nFizzBuzzUpperLimit
*/
*/
public void runSolution(int nFizzBuzzUpperLimit);

}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public interface IsEvenlyDivisibleStrategy {
/**
* @param theInteger
* @return
*/
*/
public boolean isEvenlyDivisible(int theInteger);

}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ public interface OutputGenerationStrategy {

/**
* @param generationParameter
*/
*/
void performGenerationForCurrentStep(SingleStepOutputGenerationParameter generationParameter);

}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ public interface SingleStepOutputGenerationParameter {

/**
* @return
*/
*/
public int retrieveIntegerValue();

}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public interface IntegerStringReturner {
/**
* @param theInteger
* @return
*/
*/
public String getIntegerReturnString(int theInteger);

}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ public interface StringStringReturner {

/**
* @return
*/
*/
public String getReturnString();

}
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ public interface OutputGenerationContext {

/**
* @return
*/
*/
public IsEvenlyDivisibleStrategy getStrategy();

/**
* @return
*/
*/
public DataPrinter getPrinter();

}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public interface OutputGenerationContextVisitor {
/**
* @param context
* @param nGenerationParameter
*/
*/
public void visit(OutputGenerationContext context, int nGenerationParameter);

}

0 comments on commit 2f92ef7

Please sign in to comment.