id.ac.unpar.siamodels.InfoMataKuliah Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SIAModels Show documentation
Show all versions of SIAModels Show documentation
This library models various aspects of Universitas Katolik Parahyangan's
objects, such as mahasiswa (student), their modules, and their grades.
Theoretically supports all departments, but only Informatics department
is mostly complete.
package id.ac.unpar.siamodels;
import java.lang.annotation.Target;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface InfoMataKuliah {
/**
* Jumlah bobot sks dari mata kuliah ini
*
* @return jumlah bobot sks
*/
public int sks();
/**
* Nama mata kuliah ini
*
* @return nama mata kuliah
*/
public String nama();
}