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

com.github.gv2011.util.beans.examples.full.Person Maven / Gradle / Ivy

package com.github.gv2011.util.beans.examples.full;

import com.github.gv2011.util.beans.Computed;
import com.github.gv2011.util.icol.IList;

public interface Person extends Contact{

  @Override
  @Computed
  String name();

  @Computed
  String forname();

  IList fornames();

  @Computed
  String surname();

  String firstSurname();

  String secondSurname();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy