Skip to content
Snippets Groups Projects
Module.java 362 B
Newer Older
  • Learn to ignore specific revisions
  • package nloc;
    
    public class Module extends Channel {
    
      private String description;
    
    
      public Module (String moduleName, int pSteps, int hSteps) {
    
        super(moduleName, pSteps, hSteps);
        this.description = null;
    
      public void setDescription(String desc) {
        this.description = desc;
      }
    
      public String getDescription() {
        return description;