Repository: tapestry-5 Updated Branches: refs/heads/master 5c617af6b -> 8530a2763
TAP5-2453: restore test classes Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/8530a276 Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/8530a276 Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/8530a276 Branch: refs/heads/master Commit: 8530a27636f4fdc69ca7bb4877f6e31b87fe5292 Parents: 5c617af Author: Jochen Kemnade <[email protected]> Authored: Wed Nov 8 14:56:07 2017 +0100 Committer: Jochen Kemnade <[email protected]> Committed: Wed Nov 8 14:56:07 2017 +0100 ---------------------------------------------------------------------- .../tapestry5/ioc/internal/util/Pair.java | 42 ++++++++++++++++++++ .../ioc/internal/util/StringLongPair.java | 19 +++++++++ 2 files changed, 61 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/8530a276/tapestry-ioc/src/test/java/org/apache/tapestry5/ioc/internal/util/Pair.java ---------------------------------------------------------------------- diff --git a/tapestry-ioc/src/test/java/org/apache/tapestry5/ioc/internal/util/Pair.java b/tapestry-ioc/src/test/java/org/apache/tapestry5/ioc/internal/util/Pair.java new file mode 100644 index 0000000..00722f4 --- /dev/null +++ b/tapestry-ioc/src/test/java/org/apache/tapestry5/ioc/internal/util/Pair.java @@ -0,0 +1,42 @@ +// Copyright 2008 The Apache Software Foundation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package org.apache.tapestry5.ioc.internal.util; + +public class Pair<K, V> +{ + private K key; + + private V value; + + public K getKey() + { + return key; + } + + public void setKey(K key) + { + this.key = key; + } + + public V getValue() + { + return value; + } + + public void setValue(V value) + { + this.value = value; + } +} http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/8530a276/tapestry-ioc/src/test/java/org/apache/tapestry5/ioc/internal/util/StringLongPair.java ---------------------------------------------------------------------- diff --git a/tapestry-ioc/src/test/java/org/apache/tapestry5/ioc/internal/util/StringLongPair.java b/tapestry-ioc/src/test/java/org/apache/tapestry5/ioc/internal/util/StringLongPair.java new file mode 100644 index 0000000..0071beb --- /dev/null +++ b/tapestry-ioc/src/test/java/org/apache/tapestry5/ioc/internal/util/StringLongPair.java @@ -0,0 +1,19 @@ +// Copyright 2008 The Apache Software Foundation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package org.apache.tapestry5.ioc.internal.util; + +public class StringLongPair extends Pair<String, Long> +{ +}
