Skip to content

Instantly share code, notes, and snippets.

@AIRAT1
Created August 24, 2014 09:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AIRAT1/da364c3014fe039b3e25 to your computer and use it in GitHub Desktop.
Save AIRAT1/da364c3014fe039b3e25 to your computer and use it in GitHub Desktop.
com.javarush.test.level15.lesson12.home05;
package com.javarush.test.level15.lesson12.home05;
/**
* Created by Vaio on 24.08.2014.
*/
public class SubSolution extends Solution
{
SubSolution()
{
super();
}
SubSolution(byte i1)
{
super(i1);
}
SubSolution(short i2)
{
super(i2);
}
public SubSolution(Object pub1)
{
super(pub1);
}
public SubSolution(String pub2)
{
super(pub2);
}
public SubSolution(Integer pub3)
{
super(pub3);
}
protected SubSolution(Character prot1)
{
super(prot1);
}
protected SubSolution(Double prot2)
{
super(prot2);
}
protected SubSolution(Exception prot3)
{
super(prot3);
}
private SubSolution(Number priv1){};
private SubSolution(Boolean priv2){};
private SubSolution(Float priv3){};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment