Skip to content
Snippets Groups Projects
Select Git revision
  • modules
  • master default protected
  • dev
  • clock
  • web
  • nime2020
  • connections
7 results

bf-param.pd

Blame
  • trace.java 970 B
    /****************************************************************************
    * Class:       trace()                                                       *
    * Parameters:  all the trace parameters                                      *
    * Autor:       ael-mess                                                      *
    * Description: represents the parameters required for tracing                *
    ****************************************************************************/
    
    package com.event;
    
    public abstract class trace {
        protected Integer cpu_id = null;
        protected Integer pid = null;
        protected Integer tid = null;
        protected time_trace time = null;
    
        public Integer getCpu_id() {
            return this.cpu_id;
        }
    
        public Integer getPid() {
            return this.pid;
        }
    
        public Integer getTid() {
            return this.tid;
        }
    
        public time_trace getTime() {
            return this.time;
        }
    
        public abstract String description();
    }