diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-09-04 21:28:49 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-09-04 21:28:49 +0200 |
commit | a5fef41f49da3d82a619629c5060fc9a3565eeb2 (patch) | |
tree | 6209eaac2bdb31f2fa32e95374085b3bba54fca9 /src/libgamma/Ramp64.java | |
parent | add states (diff) | |
download | jlibgamma-a5fef41f49da3d82a619629c5060fc9a3565eeb2.tar.gz jlibgamma-a5fef41f49da3d82a619629c5060fc9a3565eeb2.tar.bz2 jlibgamma-a5fef41f49da3d82a619629c5060fc9a3565eeb2.tar.xz |
add gamma ramps + suppress serial warning on libgammaexception
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/libgamma/Ramp64.java')
-rw-r--r-- | src/libgamma/Ramp64.java | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/src/libgamma/Ramp64.java b/src/libgamma/Ramp64.java new file mode 100644 index 0000000..d772e96 --- /dev/null +++ b/src/libgamma/Ramp64.java @@ -0,0 +1,64 @@ +/** + * jlibgamma — Display server abstraction layer for gamma ramp and Java + * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org) + * + * This library is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this library. If not, see <http://www.gnu.org/licenses/>. + */ +package libgamma; + + +/** + * A single 64-bit gamma ramp. + */ +public class Ramp64 extends Ramp +{ + /** + * Constructor. + * + * @param address The address of the native object. + * @param size The size of the encoding axis of the gamma ramp. + */ + Ramp64(long address, int size) + { + super(address, size); + } + + + /** + * Read the value of a stop. + * + * @param stop The index of the stop. + * @return The value of the stop. + */ + public long get(int stop) + { + return libgamma_gamma_ramps64_get(this.address, stop); + } + + + /** + * Read the value of a stop. + * + * @param stop The index of the stop. + * @param value The new value of the stop. + * @return The new value of the stop. + */ + public long set(int stop, long value) + { + libgamma_gamma_ramps64_set(this.address, stop, value); + return value; + } + +} + |