~ubuntu-branches/ubuntu/wily/eclipse-linuxtools/wily

« back to all changes in this revision

Viewing changes to gprof/org.eclipse.linuxtools.gprof/src/org/eclipse/linuxtools/internal/gprof/symbolManager/Bucket.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam, Jakub Adam, tony mancill
  • Date: 2014-10-11 11:44:05 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20141011114405-yazjvxfzzhmi5sgj
Tags: 3.1.0-1
[ Jakub Adam ]
* New upstream release (Closes: #761524).
* Refreshed d/patches.
* Don't build removed feature org.eclipse.linuxtools.tools.launch
  - merged into org.eclipse.linuxtools.profiling.
* Use javac target 1.7.
* Build new feature org.eclipse.linuxtools.dataviewers.feature
  - required by Valgrind integration.
* Build-depend on eclipse-remote-services-api and eclipse-cdt-autotools.
* Bump Standards-Version to 3.9.6.
* Override incompatible-java-bytecode-format - linuxtools needs Java 7.
* Remove unused codeless-jar override.

[ tony mancill ]
* Tweak short package description to make lintian happy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 * @author Xavier Raynaud <xavier.raynaud@st.com>
18
18
 */
19
19
public class Bucket {
20
 
        
21
 
        /** Start address of this bucket */
22
 
        public final long start_addr;
23
 
        /** End address of this bucket */
24
 
        public final long end_addr;
25
 
        /** time spent in this bucket */
26
 
        public final int  time;
27
 
        
28
 
        /**
29
 
         * Constructor
30
 
         * @param start_addr
31
 
         * @param end_addr
32
 
         * @param time
33
 
         */
34
 
        public Bucket(long start_addr, long end_addr, int time) {
35
 
                this.start_addr = start_addr;
36
 
                this.end_addr   = end_addr;
37
 
                this.time       = time;
38
 
        }
 
20
 
 
21
    /** Start address of this bucket */
 
22
    public final long startAddr;
 
23
    /** End address of this bucket */
 
24
    public final long endAddr;
 
25
    /** time spent in this bucket */
 
26
    public final int  time;
 
27
 
 
28
    /**
 
29
     * Constructor
 
30
     * @param startAddr
 
31
     * @param endAddr
 
32
     * @param time
 
33
     */
 
34
    public Bucket(long startAddr, long endAddr, int time) {
 
35
        this.startAddr = startAddr;
 
36
        this.endAddr   = endAddr;
 
37
        this.time       = time;
 
38
    }
39
39
 
40
40
}