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

org.opendolphin.demo.MasterDetailConstants.groovy Maven / Gradle / Ivy

Go to download

Dolphin is a free open-source library that bridges the worlds of enterprise Java and desktop Java. It uses presentation models to bind client-side views to server-side actions.

There is a newer version: 1.0-RC3
Show newest version
package org.opendolphin.demo

class MasterDetailConstants {
    static final String CMD_PULL            = unique 'pullSoccerPlayers'

    static final String TYPE_SOCCERPLAYER   = unique('soccerPlayer')

    static final String ATT_NAME            = 'Name'
    static final String ATT_RANK            = 'Rank'
    static final String ATT_YEAROFBIRTH     = 'YearOfBirth'
    static final String ATT_COUNTRY         = 'Country'
    static final String ATT_MATCHESFIFA     = 'Matches(FIFA)'
    static final String ATT_MATCHESRSSSF    = 'Matches(RSSSF)'


    static String unique(String part) {
        MasterDetailConstants.name + '-' + part
    }

    static String qualify(String id, String attributeName) {
        unique id + '.' + attributeName
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy