Package org.apache.isis.application

Examples of org.apache.isis.application.Title


            }
        }
    }

    public Title title() {
        Title t = new Title(getStart() == null ? "" : getStart().title().toString());
        t.append("~");
        t.append(getEndDate() == null ? "" : getEndDate().title().toString());

        return t;
    }
View Full Code Here


    public void subtract(final FloatingPointNumber number) {
        add(-number.value);
    }

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

        return getSelection();
    }

    public Title title() {
        ensureAtLeastPartResolved();
        return new Title((options == null) ? "none" : ((selection >= 0) ? options[selection] : ""));
    }
View Full Code Here

        }
    }

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

        }
    }

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

        ensureAtLeastPartResolved();
        return name;
    }

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

        }
    }

    public Title title() {
        ensureAtLeastPartResolved();
        return new Title(isNull ? "" : String.valueOf(number));
    }
View Full Code Here

        // amount -= money.amount;
        setValue(doubleValue() - money.amount);
    }

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

            parentChanged();
        }
    }

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

        return tail;
    }

    public Title title() {
        Title t = new Title(getStart() == null ? "" : getStart().title().toString());
        t.append("~");
        t.append(getEnd() == null ? "" : getEnd().title().toString());

        return t;
    }
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.