From 9b3bea84b939ff8447e157fcc903cdf84b410030 Mon Sep 17 00:00:00 2001 From: Erik Brakkee Date: Tue, 22 Jun 2010 20:28:02 +0000 Subject: [PATCH] --- .../wamblee/concurrency/ReadWriteLock.java | 5 +++++ .../org/wamblee/concurrency/package-info.java | 21 +++++++++++++++++++ .../java/org/wamblee/concurrency/package.html | 15 ------------- 3 files changed, 26 insertions(+), 15 deletions(-) create mode 100644 support/general/src/main/java/org/wamblee/concurrency/package-info.java delete mode 100644 support/general/src/main/java/org/wamblee/concurrency/package.html diff --git a/support/general/src/main/java/org/wamblee/concurrency/ReadWriteLock.java b/support/general/src/main/java/org/wamblee/concurrency/ReadWriteLock.java index 59f876c9..8c5abfc4 100644 --- a/support/general/src/main/java/org/wamblee/concurrency/ReadWriteLock.java +++ b/support/general/src/main/java/org/wamblee/concurrency/ReadWriteLock.java @@ -22,7 +22,12 @@ import java.util.HashSet; * writer. This implementation does not aim for high performance but for * robustness and simplicity. Users of this class should not synchronize on * objects of this class. + * + * This class was originally developed for a Java developer certification. + * It is deprecated now and {@link java.util.concurrent.locks.ReadWriteLock} should be used + * instead. */ +@Deprecated public class ReadWriteLock { /** * Sets containing the references to the threads that are currently reading. diff --git a/support/general/src/main/java/org/wamblee/concurrency/package-info.java b/support/general/src/main/java/org/wamblee/concurrency/package-info.java new file mode 100644 index 00000000..fe49e18c --- /dev/null +++ b/support/general/src/main/java/org/wamblee/concurrency/package-info.java @@ -0,0 +1,21 @@ +/* + * Copyright 2005-2010 the original author or authors. + * + * 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. + */ +/** + * This package provides utilities for dealing with concurrency. + * + * Currently, pessimistic locks are provided but other types can be added as well. + */ +package org.wamblee.concurrency; \ No newline at end of file diff --git a/support/general/src/main/java/org/wamblee/concurrency/package.html b/support/general/src/main/java/org/wamblee/concurrency/package.html deleted file mode 100644 index 405a12a1..00000000 --- a/support/general/src/main/java/org/wamblee/concurrency/package.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - wamblee.org - - - -This package provides utilities for dealing with concurrency. - - - -@since - - - - -- 2.31.1