Skip to content

Instantly share code, notes, and snippets.

@edipofederle
Created April 30, 2013 17:43
Show Gist options
  • Select an option

  • Save edipofederle/5490437 to your computer and use it in GitHub Desktop.

Select an option

Save edipofederle/5490437 to your computer and use it in GitHub Desktop.
public class Operations {
private DocumentManager doc;
private ClassOperations classOperation;
public Operations(DocumentManager doc2) {
this.doc = doc2;
createClassOperation();
}
private void createClassOperation() {
this.classOperation = new ClassOperations(doc);
}
public ClassOperations forClass() { return classOperation; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment