blob: e9202f71fc2bda0e4c32a9b1a4d8e6236f9e2705 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.openide.actions;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import java.util.ArrayList;
import java.util.List;
/** Utilities for actions tests.
* @author Jesse Glick
*/
public abstract class ActionsInfraHid {
private ActionsInfraHid() {}
/** Prop listener that will tell you if it gets a change.
* XXX replace with MockPropertyChangeListener
*/
public static final class WaitPCL implements PropertyChangeListener {
/** whether a change has been received, and if so count */
public int gotit = 0;
/** optional property name to filter by (if null, accept any) */
private final String prop;
public WaitPCL(String p) {
prop = p;
}
public synchronized void propertyChange(PropertyChangeEvent evt) {
if (prop == null || prop.equals(evt.getPropertyName())) {
gotit++;
notifyAll();
}
}
public boolean changed() {
return changed(1500);
}
public synchronized boolean changed(int timeout) {
if (gotit > 0) {
return true;
}
try {
wait(timeout);
} catch (InterruptedException ie) {
ie.printStackTrace();
}
return gotit > 0;
}
}
// Stolen from RequestProcessorTest.
public static void doGC() {
doGC(10);
}
public static void doGC(int count) {
List<Object> l = new ArrayList<Object>(count);
while (count-- > 0) {
System.gc();
System.runFinalization();
l.add(new byte[1000]);
}
}
}