1 19 20 package org.netbeans.modules.xml.xam.ui.search; 21 22 27 public class Query { 28 29 private String query; 30 32 private boolean selected; 33 34 private boolean regex; 35 36 43 public Query(String query, boolean selected, boolean regex) { 44 this.query = query; 45 this.selected = selected; 46 this.regex = regex; 47 } 48 49 54 public String getQuery() { 55 return query; 56 } 57 58 64 public boolean isRegularExpression() { 65 return regex; 66 } 67 68 75 public boolean useSelected() { 76 return selected; 77 } 78 } 79 | Popular Tags |