X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2FTKeypress.java;h=872ebc45b50d44891267aaa265994e6b4538bf07;hb=3e0743556d1f31723a11a6019b5c2b018b4b2104;hp=5e551d8c18f4397a33bb0dd10ebe1544c06ff728;hpb=32437017f5e13c3668fe12328364ed3cd8eac8eb;p=fanfix.git diff --git a/src/jexer/TKeypress.java b/src/jexer/TKeypress.java index 5e551d8..872ebc4 100644 --- a/src/jexer/TKeypress.java +++ b/src/jexer/TKeypress.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2016 Kevin Lamonte + * Copyright (C) 2017 Kevin Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -275,6 +275,17 @@ public final class TKeypress { this.shift = shift; } + /** + * Create a duplicate instance. + * + * @return duplicate intance + */ + public TKeypress dup() { + TKeypress keypress = new TKeypress(isFunctionKey, keyCode, ch, + alt, ctrl, shift); + return keypress; + } + /** * Comparison check. All fields must match to return true. *