Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
/* | |
The Oracle Java enum Planets example using the Klang DIY Enum, modified to include ordering. | |
*/ | |
object KlangEnumPlanets extends App { | |
trait Enum { //DIY enum type | |
import java.util.concurrent.atomic.AtomicReference //Concurrency paranoia | |
type EnumVal <: Value //This is a type that needs to be found in the implementing class |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
<style> | |
.tabela-alterada .rich-table-subheader th:last-child { | |
background-color : #fff; | |
} | |
</style> | |
<rich:panel header="teste"> | |
<rich:dataTable value="#{reBeam.alunos}" var="aluno" styleClass="tabela-alterada" > | |
<f:facet name="header"> | |
<rich:columnGroup> |