Home
last modified time | relevance | path

Searched refs:DialogStatus (Results 1 – 1 of 1) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
DGLTraceOptionsDialog.java154 DialogStatus status = validateDialog(); in createButtonsForButtonBar()
290 DialogStatus status = validateDialog(); in validateAndSetMessage()
328 private final class DialogStatus { class in GLTraceOptionsDialog
332 private DialogStatus(boolean isValid, String errMessage) { in DialogStatus() method in GLTraceOptionsDialog.DialogStatus
338 private DialogStatus validateDialog() { in validateDialog()
340 return new DialogStatus(false, "No connected devices."); in validateDialog()
344 return new DialogStatus(false, "Provide an application name"); in validateDialog()
349 return new DialogStatus(false, "Specify the location where the trace will be saved."); in validateDialog()
354 return new DialogStatus(false, in validateDialog()
358 return new DialogStatus(true, null); in validateDialog()