All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jacpfx.rcp.perspective.EmbeddedFXPerspective Maven / Gradle / Ivy

There is a newer version: 2.1
Show newest version
package org.jacpfx.rcp.perspective;

import org.jacpfx.api.component.Injectable;

/**
 * Created with IntelliJ IDEA.
 * User: ady
 * Date: 19.08.13
 * Time: 21:23
 * To change this template use File | Settings | File Templates.
 */
public class EmbeddedFXPerspective extends AFXPerspective {

    public EmbeddedFXPerspective(Injectable perspective) {
        this.perspective = perspective;
    }

    @Override
    public String toString() {
        return this.getContext() != null ? this.getContext().getId() : this.perspective.toString();
    }

    @Override
    public boolean equals(Object o) {
        return super.equals(o);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy