Package org.apache.isis.application

Examples of org.apache.isis.application.Title


        }
    }

    public Title title() {
        ensureAtLeastPartResolved();
        return new Title(isNull ? "" : ISO_LONG.format(date));
    }
View Full Code Here


        return password;
    }

    public Title title() {
        ensureAtLeastPartResolved();
        return new Title(password);
    }
View Full Code Here

        setValuesInternal(year, month, day, hour, minute, second, false);
    }

    public Title title() {
        this.ensureAtLeastPartResolved();
        return new Title(isNull ? "" : format.format(date));
    }
View Full Code Here

        setValue(Math.abs(this.intValue()));
    }

    public Title title() {
        ensureAtLeastPartResolved();
        return new Title(isNull ? "" : FORMAT.format(whole));
    }
View Full Code Here

    }

    public Title title() {
        this.ensureAtLeastPartResolved();
        if (color == 0) {
            return new Title("Black");
        } else if (color == 0xffffff) {
            return new Title("White");
        } else {
            return new Title("0x" + Integer.toHexString(color));
        }
    }
View Full Code Here

    public String stringValue() {
        return isEmpty() ? "" : text;
    }

    public Title title() {
        return new Title(stringValue());
    }
View Full Code Here

        return urlString;
    }

    public Title title() {
        ensureAtLeastPartResolved();
        return new Title(urlString);
    }
View Full Code Here

            parentChanged();
        }
    }

    public Title title() {
        return new Title(isEmpty() ? "" : (flag ? "TRUE" : "FALSE"));
    }
View Full Code Here

    public void subtract(final double value) {
        add(-value);
    }

    public Title title() {
        return new Title(isEmpty() ? "" : PERCENTAGE_FORMAT.format(value));
    }
View Full Code Here

TOP

Related Classes of org.apache.isis.application.Title

Copyright © 2018 www.massapicom. 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.