Lines Matching defs:expert
104 * The "expert" flag is used to distinguish between those features that are
105 * intended for expert users from those that are intended for normal users.
110 return expert;
114 * The "expert" flag is used to distinguish between features that are
115 * intended for expert users from those that are intended for normal users.
117 * @param expert True if this feature is intended for use by experts only.
119 public void setExpert(boolean expert) {
120 this.expert = expert;
224 * The merged hidden and expert flags are formed by or-ing the values.
232 expert = x.expert | y.expert;
257 expert = old.expert;
390 private boolean expert;
412 appendTo(sb, "expert", this.expert);