本文整理汇总了Java中org.apache.isis.applib.annotation.Where.ALL_TABLES属性的典型用法代码示例。如果您正苦于以下问题:Java Where.ALL_TABLES属性的具体用法?Java Where.ALL_TABLES怎么用?Java Where.ALL_TABLES使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.apache.isis.applib.annotation.Where
的用法示例。
在下文中一共展示了Where.ALL_TABLES属性的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getApplicationTenancy
@PropertyLayout(
hidden = Where.ALL_TABLES,
describedAs = "Determines those users for whom this object is available to view and/or modify."
)
@Programmatic
public ApplicationTenancy getApplicationTenancy() {
final ApplicationTenancy applicationTenancy = applicationTenancyRepository.findByPathCached(applicationTenancyPath);
if (applicationTenancy == null) {
throw new FatalException("Domain Object without Application Tenancy.");
}
return applicationTenancy;
}
示例2: complete
@Action(
semantics = SemanticsOf.SAFE,
hidden = Where.ALL_TABLES
)
@ActionLayout(
describedAs = "The relative priority of this item compared to others not yet complete (using 'due by' date)",
contributed = Contributed.AS_ASSOCIATION
)
@Property(
editing = Editing.DISABLED,
editingDisabledReason = "Relative priority, derived from due date"
)
public Integer $$() {
return queryResultsCache.execute(() -> {
if(toDoItem.isComplete()) {
return null;
}
// sort items, then locate this one
int i=1;
for (final ToDoItem each : relativePriorityService.sortedNotYetComplete()) {
if(each == toDoItem) {
return i;
}
i++;
}
return null;
}, ToDoItem_relativePriority.class, "relativePriority", toDoItem);
}
示例3: getApellido
/**
* Pemite obtener un apellido a la Persona
* @return apellido String
*/
@Hidden(where = Where.ALL_TABLES)
@Title(sequence = "1.0")
@Column(allowsNull = "false")
@MemberOrder(sequence = "1")
public String getApellido() {
return apellido;
}
示例4: getNombre
/**
* Pemite obtener un nombre a la Persona
* @return nombre String
*/
@Hidden(where = Where.ALL_TABLES)
@Title(sequence = "1.5", prepend = ", ")
@Column(allowsNull = "false")
@MemberOrder(sequence = "2")
public String getNombre() {
return nombre;
}
示例5: getCorreo
/**
* Pemite obtener un correo electronico a la Persona
* @return correo String
*/
@Hidden(where = Where.ALL_TABLES)
@Optional
@MemberOrder(sequence = "6")
public String getCorreo() {
return correo;
}
示例6: getDireccion
/**
* Pemite obtener una direccion de la Persona
* @return direccion String
*/
@Hidden(where = Where.ALL_TABLES)
@Optional
@MultiLine(numberOfLines = 2)
@Named("Dirección")
@Column(allowsNull = "true")
@MemberOrder(sequence = "7")
public String getDireccion() {
return direccion;
}
示例7: getNumero
/**
* Obtiene el numero de un nuevo Menu que se
* generará de forma automática
* @return numero int
*/
@Hidden(where = Where.ALL_TABLES)
@Persistent(valueStrategy = IdGeneratorStrategy.INCREMENT, sequence = "secuenciaNumeroMenu")
@TypicalLength(3)
@Disabled
@Column(allowsNull = "false")
@MemberOrder(sequence = "1")
public int getNumero() {
return numero;
}
示例8: getNombre
/**
* Obtiene y valida el nombre de un nuevo Menu
* @return nombre String
*/
@RegEx(validation = "[0-9a-zA-ZáéíóúÁÉÍÓÚñÑ\\s]*")
@Hidden(where = Where.ALL_TABLES)
@MemberOrder(sequence = "2")
@Column(allowsNull = "false")
@Title
public String getNombre() {
return nombre;
}
示例9: getPlatoPrincipal
/**
* Obtiene un plato principal para el Menu
* @return platoPrincipal PlatoPrincipal
*/
@Hidden(where = Where.ALL_TABLES)
@MemberOrder(sequence = "3")
@Column(allowsNull = "false")
public PlatoPrincipal getPlatoPrincipal() {
return platoPrincipal;
}
示例10: getValueAsBoolean
@Property(
hidden = Where.ALL_TABLES
)
@PropertyLayout(
named = "Value"
)
public Boolean getValueAsBoolean() {
return parseValueAsBoolean();
}
示例11: getPlatoEntrada
/**
* Obtiene un plato de entrada para el Menu
* @return platoEntrada PlatoEntrada
*/
@Hidden(where = Where.ALL_TABLES)
@Optional
@MemberOrder(sequence = "6")
public PlatoEntrada getPlatoEntrada() {
return platoEntrada;
}
示例12: getPostre
/**
* Obtiene un postre para el Menu
* @return postre Postre
*/
@Hidden(where = Where.ALL_TABLES)
@Optional
@MemberOrder(sequence = "7")
public Postre getPostre() {
return postre;
}
示例13: getNombre
/**
* Obtiene el nombre de la Oferta
* @return nombre String
*/
@Hidden(where = Where.ALL_TABLES)
@RegEx(validation = "[0-9a-zA-ZñÑáéíóúÁÉÍÓÚñÑ\\s]*")
@Title
@TypicalLength(30)
@MemberOrder(sequence = "2")
@Column(allowsNull = "false")
public String getNombre() {
return nombre;
}
示例14: getDescripcion
/**
* Obtiene la descripcion de la Oferta
* @return descripcion String
*/
@Hidden(where = Where.ALL_TABLES)
@Named("Descripción")
@MultiLine(numberOfLines = 3)
@MemberOrder(sequence = "4")
@Column(allowsNull = "false")
public String getDescripcion() {
return descripcion;
}
示例15: getNumero
/**
* Obtiene un numero para el Producto
* @return numero int
*/
@Hidden(where = Where.ALL_TABLES)
@Persistent(valueStrategy = IdGeneratorStrategy.INCREMENT, sequence = "secuenciaNumeroProducto")
@Named("Número")
@TypicalLength(3)
@Disabled
@Column(allowsNull = "false")
@MemberOrder(sequence = "1")
public int getNumero() {
return numero;
}