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

dev.cheleb.scalamigen.Annotations.scala Maven / Gradle / Ivy

There is a newer version: 0.14.0
Show newest version
package dev.cheleb.scalamigen

import scala.annotation.StaticAnnotation

/** Annotation for field names
  *
  * Use this annotation to specify field names for case class fields.
  */
class FieldName(val value: String) extends StaticAnnotation

/** @param name
  */
case class Panel(
    name: String,
    asTable: Boolean = true,
    fieldCss: String = "srf-field",
    labelCss: String = "srf-label",
    panelCss: String = "srf-panel"
) extends StaticAnnotation

/** */
case class NoPanel(
    asTable: Boolean = true,
    fieldCss: String = "srf-field",
    labelCss: String = "srf-label",
    panelCss: String = "srf-panel"
) extends StaticAnnotation




© 2015 - 2024 Weber Informatics LLC | Privacy Policy