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

org.objectweb.celtix.tools.common.model.JavaServiceClass Maven / Gradle / Ivy

The newest version!
package org.objectweb.celtix.tools.common.model;

import java.util.ArrayList;
import java.util.List;

public class JavaServiceClass extends JavaClass {

    private final List ports = new ArrayList();
  
    public JavaServiceClass(JavaModel model) {
        super(model);
    }

    public void addPort(JavaPort port) {
        ports.add(port);
    }

    public List getPorts() {
        return ports;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy