public class SomeClass { // Instance variable(s) private int[] theData; // Constructor(s) public SomeClass() { // constructor code goes here }. . . /** Search for given value; return index. */publicint search(int searchValue) { int i; for (inti = 0; i < theData.length; i++ ) { if ( theData[i] == searchValue ) { return i; } } return -1; } . . .}