Examples of HtmlLabel


Examples of org.jitterbit.ui.widget.label.HtmlLabel

        }

        private Object createCaption() {
            JLabel header = TextStyles.InfoTextHeader.makeLabel(getString("Move.ConflictDialog.Header"));
            header.setIcon(CommonIcons.WARNING_16);
            HtmlLabel message = new HtmlLabel(format("Move.ConflictDialog.Message", newOwner.getName(), itemToMove.getName()), 400);
            JLabel question = new JLabel(getString("Move.ConflictDialog.Question"));
            BoxBuilder column = BoxBuilder.vertical();
            column.addAllWithSpace(10, header, message, question);
            column.leftAligned();
            column.setBorder(new BorderBuilder().etched().empty(5));
View Full Code Here

Examples of org.jitterbit.ui.widget.label.HtmlLabel

    private UiProvider layoutCaption() {
        JLabel top = TextStyles.InfoTextHeader.makeLabel(Strings.get("EntityPage.Dependencies.Displayer.Title"));
        top.setIcon(ClientIcons.DEPENDENT_ITEMS_16);
        String caption = Strings.get("EntityPage.Dependencies.Displayer.Caption");
        HtmlLabel label = new HtmlLabel(caption, 300);
        BorderLayoutBuilder layout = new BorderLayoutBuilder(0, 5);
        layout.north(top).center(label);
        layout.setBackground(Color.WHITE).setBorder(new BorderBuilder().line().empty(5));
        return layout;
    }
View Full Code Here

Examples of org.jitterbit.ui.widget.label.HtmlLabel

            return doNotShowAgain.isSelected();
        }

        @Override
        public void decorate(UiCanvas canvas) {
            JLabel label = new HtmlLabel(message, 400);
            new BorderLayoutBuilder(0, 5).north(label).south(doNotShowAgain).decorate(canvas);
        }
View Full Code Here

Examples of pt.ist.fenixWebFramework.renderers.components.HtmlLabel

            HtmlCheckBoxList workingStudentCheckBoxList = new HtmlCheckBoxList();
            for (WorkingStudentSelectionType workingStudentSelectionType : WorkingStudentSelectionType.values()) {
                HtmlCheckBox option =
                        workingStudentCheckBoxList.addOption(
                                new HtmlLabel(BundleUtil.getString(Bundle.ENUMERATION,
                                        workingStudentSelectionType.getQualifiedName())), workingStudentSelectionType.name());
                option.setChecked(bean.getWorkingStudentTypes().contains(workingStudentSelectionType));
            }
            row.createCell().setBody(workingStudentCheckBoxList);
View Full Code Here

Examples of pt.ist.fenixWebFramework.renderers.components.HtmlLabel

            HtmlCheckBoxList shiftCheckBoxList = new HtmlCheckBoxList();
            for (Shift shift : bean.getExecutionCourse().getAssociatedShifts()) {
                MetaObject shiftMetaObject = MetaObjectFactory.createObject(shift, new Schema(Shift.class));
                HtmlCheckBox option =
                        shiftCheckBoxList.addOption(new HtmlLabel(shift.getPresentationName()), shiftMetaObject.getKey()
                                .toString());
                option.setChecked(bean.getShifts().contains(shift));
            }
            row.createCell().setBody(shiftCheckBoxList);
View Full Code Here

Examples of pt.ist.fenixWebFramework.renderers.components.HtmlLabel

            HtmlCheckBoxList dcpCheckBoxList = new HtmlCheckBoxList();
            for (DegreeCurricularPlan degreeCurricularPlan : bean.getExecutionCourse().getAttendsDegreeCurricularPlans()) {
                MetaObject dcpMetaObject =
                        MetaObjectFactory.createObject(degreeCurricularPlan, new Schema(DegreeCurricularPlan.class));
                HtmlCheckBox option =
                        dcpCheckBoxList.addOption(new HtmlLabel(degreeCurricularPlan.getName()), dcpMetaObject.getKey()
                                .toString());
                option.setChecked(bean.getDegreeCurricularPlans().contains(degreeCurricularPlan));
            }
            row.createCell().setBody(dcpCheckBoxList);
View Full Code Here

Examples of pt.ist.fenixWebFramework.renderers.components.HtmlLabel

            HtmlCheckBoxList attendsStateCheckBoxList = new HtmlCheckBoxList();
            for (StudentAttendsStateType attendsStateType : StudentAttendsStateType.values()) {
                HtmlCheckBox option =
                        attendsStateCheckBoxList.addOption(
                                new HtmlLabel(BundleUtil.getString(Bundle.ENUMERATION, attendsStateType.getQualifiedName())),
                                attendsStateType.name());
                option.setChecked(bean.getAttendsStates().contains(attendsStateType));
            }
            row.createCell().setBody(attendsStateCheckBoxList);
View Full Code Here

Examples of pt.ist.fenixWebFramework.renderers.components.HtmlLabel

                        row.createCell().setBody(groupLink);
                    }
                }

                String email = attends.getRegistration().getStudent().getPerson().getEmail();
                row.createCell().setBody(email != null ? new HtmlEMailLink(email) : new HtmlLabel(""));

                for (ShiftType shiftType : shiftTypes) {
                    Shift shift = attends.getRegistration().getShiftFor(bean.getExecutionCourse(), shiftType);
                    if (shift == null) {
                        row.createCell("N/A");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.