package com.mycompany.myproject;

public class MyClass {
	protected String myString;

	public MyClass() {
		initialize();
	}

	public String insertExample(String theString, int theInt) {
		try {
			doSomethingVeryDangerous();
		} catch (IKnewItBeforeException myexception) {
			doSomethingMoreReasonable();
		}

		try {
		} catch (UnimportantException e) {
			// empty catch block
		}

		return toString();
	}

	public void emptyMethod(String theString) {
	}

	public String getMyString() {
		return myString;
	}

	public void setMyString(String myString) {
		this.myString = myString;
	}
}