src/java.management/share/classes/sun/management/counter/perf/PerfByteArrayCounter.java
changeset 58766 54ffb15c4839
parent 47216 71c04702a3d5
equal deleted inserted replaced
58760:1f7f707c1aa9 58766:54ffb15c4839
     1 /*
     1 /*
     2  * Copyright (c) 2003, 2004, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    29 import java.nio.*;
    29 import java.nio.*;
    30 
    30 
    31 public class PerfByteArrayCounter extends AbstractCounter
    31 public class PerfByteArrayCounter extends AbstractCounter
    32        implements ByteArrayCounter {
    32        implements ByteArrayCounter {
    33 
    33 
       
    34     @SuppressWarnings("serial") // Value indirectly copied as a byte[] in writeReplace
    34     ByteBuffer bb;
    35     ByteBuffer bb;
    35 
    36 
    36     PerfByteArrayCounter(String name, Units u, Variability v,
    37     PerfByteArrayCounter(String name, Units u, Variability v,
    37                          int flags, int vectorLength,
    38                          int flags, int vectorLength,
    38                          ByteBuffer bb) {
    39                          ByteBuffer bb) {