You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class FindWindowResult extends Object{ public int part; public NewWindow theWindow; public FindWindowResult(int thePart) { this.part = thePart; this.theWindow = null; } public FindWindowResult(int thePart,NewWindow windowArg) { this.part = thePart; this.theWindow = windowArg; } }