Skip to content
Permalink
1821c8112c
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
33 lines (30 sloc) 710 Bytes
/**
* Write a description of class Collection here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class Collection
{
// instance variables - replace the example below with your own
private int x;
/**
* Constructor for objects of class Collection
*/
public Collection()
{
// initialise instance variables
x = 0;
}
/**
* An example of a method - replace this comment with your own
*
* @param y a sample parameter for a method
* @return the sum of x and y
*/
public int sampleMethod(int y)
{
// put your code here
return x + y;
}
}