Home | History | Annotate | Download | only in gre

Lines Matching refs:fqcn

148      * @param element the element to look up the fqcn for
149 * @return the fqcn of the view the element represents a preview for
248 String fqcn = child.getAttribute("class"); //$NON-NLS-1$
249 if (fqcn.length() == 0) {
250 fqcn = defaultFqcn;
274 ViewData view = new ViewData(fqcn, displayName, fillPreference,
295 fqcn, fillPreference, renderMode, resize);
324 // First record map of FQCN to ViewElementDescriptor such that we can quickly
330 String fqcn = view.getFullClassName();
331 if (fqcn == null) {
333 fqcn = view.getUiName();
335 fqcnToDescriptor.put(fqcn, view);
353 String fqcn = view.getFcqn();
354 ViewElementDescriptor descriptor = fqcnToDescriptor.get(fqcn);
487 private ViewData(String fqcn, String displayName,
491 mFqcn = fqcn;
545 for (String fqcn : fqns) {
547 if (fqcn.endsWith(suffix)) {
548 result.add(fqcn);
612 * @param fqcn the fully qualified class name of the view
615 public FillPreference getFillPreference(String fqcn) {
616 ViewData view = getClassToView().get(fqcn);
628 * @param fqcn the fully qualified class name
631 public RenderMode getRenderMode(String fqcn) {
632 ViewData view = getClassToView().get(fqcn);
643 * @param fqcn the fully qualified class name of the target widget
648 public ResizePolicy getResizePolicy(String fqcn) {
649 ViewData view = getClassToView().get(fqcn);
676 * @param fqcn the fully qualified class name
679 public boolean getSkip(String fqcn) {
680 ViewData view = getClassToView().get(fqcn);
692 * @param fqcn the fully qualified class name
696 public List<String> getTopAttributes(String fqcn) {
697 ViewData view = getClassToView().get(fqcn);
709 * @param fqcn the fully qualified class name
713 public List<String> getRelatedTo(String fqcn) {
714 ViewData view = getClassToView().get(fqcn);
766 * @param fqcn the fully qualified name of the view
772 public static Margins getInsets(String fqcn, Density density, String theme) {
775 if (fqcn.equals(FQCN_BUTTON)) {
801 } else if (fqcn.equals(FQCN_TOGGLE_BUTTON)) {
827 } else if (fqcn.equals(FQCN_SPINNER)) {