package org.uberfire.annotations.processors; import javax.annotation.PostConstruct; import javax.enterprise.context.ApplicationScoped; import org.uberfire.client.annotations.WorkbenchPerspective; @ApplicationScoped @WorkbenchPerspective( identifier = "HomePerspective", isDefault = true) public class PerspectiveTest14 { Object teste = new Object(); @PostConstruct public void setup() { } }