User Paul Reiners - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T16:12:32Zhttp://stackoverflow.com/feeds/user/7648http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/318066/ambiguous-column-name-error2Ambiguous column name errorPaul Reiners2008-11-25T16:49:13Z2009-11-21T06:05:41Z
<p>When executing the following (complete) SQL query on Microsoft SQL Server 2000:</p>
<pre><code>SELECT B.ARTIFACTTNS, B.ARTIFACTNAME, B.ARTIFACTTYPE, B.INITIALBYTES, B.TIMESTAMP1, B.FILENAME, B.BACKINGCLASS,
B.CHARENCODING, B.APPNAME, B.COMPONENTTNS, B.COMPONENTNAME, B.SCAMODULENAME, B.SCACOMPONENTNAME
FROM (SELECT DISTINCT A.ARTIFACTTYPE, A.ARTIFACTTNS, A.ARTIFACTNAME
FROM (SELECT DISTINCT ARTIFACTTYPE, ARTIFACTTNS, ARTIFACTNAME
FROM CUSTPROPERTIES WHERE PNAME = 'AcmeSystemName' AND PVALUE = 'MyRuleGroup'
UNION SELECT DISTINCT ARTIFACTTYPE, ARTIFACTTNS, ARTIFACTNAME
FROM CUSTPROPERTIES WHERE PNAME = 'AcmeSystemDisplayName' AND PVALUE = 'MyRuleGroup') A,
(SELECT DISTINCT ARTIFACTTYPE, ARTIFACTTNS, ARTIFACTNAME
FROM CUSTPROPERTIES WHERE PNAME = 'AcmeSystemTargetNameSpace' AND PVALUE = 'http://MyModule') B
WHERE A.ARTIFACTTYPE = B.ARTIFACTTYPE AND A.ARTIFACTTNS = B.ARTIFACTTNS AND A.ARTIFACTNAME = B.ARTIFACTNAME) A, BYTESTORE B
WHERE (A.ARTIFACTTYPE = 'BRG') AND A.ARTIFACTTYPE = B.ARTIFACTTYPE AND A.ARTIFACTTNS = B.ARTIFACTTNS AND A.ARTIFACTNAME = B.ARTIFACTNAME
ORDER BY ARTIFACTTYPE, ARTIFACTTNS, ARTIFACTNAME
</code></pre>
<p>I get the following exception:</p>
<pre><code>java.sql.SQLException: [Acme][SQLServer JDBC Driver][SQLServer]
Ambiguous column name 'ARTIFACTTYPE'.
</code></pre>
<p>What am I doing wrong here and how can I correct it?</p>
http://stackoverflow.com/questions/1725284/gui-controls-appearing-and-disappearing-based-on-user-inputs0GUI controls appearing and disappearing based on user inputsPaul Reiners2009-11-12T20:49:59Z2009-11-12T21:21:56Z
<p>I think it's considered a bad practice to have controls appearing and disappearing and the size of the window changing in a single GUI screen dynamically based on a user's input. However, I can't seem to find a definitive reference that states this.</p>
<p>I've been asked to create a GUI that has a text box at the top in which a user enters a file name (using a file chooser). Of the files that can be chosen, each has certain properties, however some of these properties can be null for a given file.</p>
<p>Below the file name text box are rows of pairs of labels and text boxes with values for each of those properties. I've been asked to not show a label and a text box if the associated property is null.</p>
<p>The user can repeatedly choose different files and the values in the text boxes should update accordingly. In addition, the labels and text boxes should appear and disappear depending on whether the values are null. Moreover, the value of the screen should shrink or expand so that there isn't empty space (because of null values and, hence, missing controls).</p>
<p>This seems to me like it would be very jarring to the user (to have controls appearing and disappearing and so on).</p>
<p>Is this bad GUI design? If so, could someone quote an authoritative reference that I can use in trying to argue against this design?</p>
<p>(What I would prefer is to just leave the text boxes blank for null values.)</p>
http://stackoverflow.com/questions/1313922/step-through-jdk-source-code-in-intellij-idea1Step through JDK source code in IntelliJ IDEAPaul Reiners2009-08-21T19:50:37Z2009-10-29T09:49:21Z
<p>How can I step through JDK source code in IntelliJ IDEA 7 and see the debug info? I can currently hit breakpoints and step through the code, but the debug info is not available. This means I can't see the value of local variables.</p>
<p>I only want to step through the source code of one class, if that matters. (For what it's worth, it's the <code>javax.swing.text.html.HTMLDocument</code> class (and I do have a copy of the corresponding .java file).)</p>
http://stackoverflow.com/questions/1609639/mxmediaplayback-flex-tag0mx:MediaPlayback Flex tagPaul Reiners2009-10-22T20:05:11Z2009-10-22T20:27:57Z
<p>I'm trying to compile <code>gui/flex/songs.mxml</code> in the fourth edition of Bruce Eckel's <em>Thinking in Java</em> book and am getting a compilation error with Flex 3.4.</p>
<p>Here is a simplified version of the example that gives the same error:</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<mx:Application
xmlns:mx="http://www.adobe.com/2006/mxml"
backgroundColor="#B9CAD2">
<mx:MediaPlayback id="songPlayer"
contentPath=""
mediaType="MP3"
height="70"
width="230"
controllerPolicy="on"
autoPlay="false"
visible="false" />
</mx:Application>
</code></pre>
<p>Here is the invocation and the error:</p>
<pre><code>>mxmlc.exe songs.mxml
Loading configuration file C:\javaTools\flex_sdk_3.4\frameworks\flex-config.xml
C:\songs.mxml(5):
Error: Could not resolve <mx:MediaPlayback> to a component implementation.
<mx:MediaPlayback id="songPlayer"
</code></pre>
<p>What am I doing wrong here?</p>
http://stackoverflow.com/questions/1561508/match-ini-section-blocks0Match INI Section BlocksPaul Reiners2009-10-13T16:52:15Z2009-10-13T20:59:40Z
<p>I'm using regular expressions to try to match section blocks in an INI file. I'm using the recipe given in the book <em>Regular Expressions Cookbook</em>, but it doesn't seem to be working for me.</p>
<p>Here is the code I'm using:</p>
<p>final BufferedReader in = new BufferedReader(
new FileReader(file));
String s;
String s2 = "";
while((s = in.readLine())!= null)
s2 += s + System.getProperty("line.separator");
in.close();</p>
<p>final String regex = "^\[[^\]\r\n]+](?:\r?\n(?:[^\r\n].<em>)?)</em>";
final Pattern pattern = Pattern.compile(regex, Pattern.MULTILINE);
String sectionBlock = null;
final Matcher regexMatcher = pattern.matcher(s2);
if (regexMatcher.find()) {
sectionBlock = regexMatcher.group();
}</p>
<p>Here are the contents of my input file:</p>
<pre><code>[Section 2]
Key 2.0=Value 2.0
Key 2.2=Value 2.2
Key 2.1=Value 2.1
[Section 1]
Key 1.1=Value 1.1
Key 1.0=Value 1.0
Key 1.2=Value 1.2
[Section 0]
Key 0.1=Value 0.1
Key 0.2=Value 0.2
Key 0.0=Value 0.0
</code></pre>
<p>The problem is that <code>sectionBlock</code> ends up being equal to the entire contents of the file, rather than just the first section.</p>
<p>(I don't know whether it matters, but I'm doing this on Windows and the line separators in <code>s2</code> are equal to "\r\n" (at least, that's what the IDEA debugger displays them as).)</p>
<p>What am I doing wrong here?</p>
http://stackoverflow.com/questions/1561496/should-one-just-read-sicp-and-not-solve-problems/1561551#15615510Answer by Paul Reiners for Should one just read SICP and not solve problems?Paul Reiners2009-10-13T16:59:01Z2009-10-13T16:59:01Z<p>I'm reading through <em>Structure and Interpretation of Computer Programs</em>, also, but I'm doing the exercises as I go along. I think that's the only way to do it. </p>
<p>The one exception for me so far is a problem that says something like "to solve this problem in its full generality is very hard". (I don't have the book here, so I can't give you an exact reference.) I thought about that one, but am planning on coming back to it after I've read the entire book. I plan on doing that with any other exercises that are explicitly marked extremely hard that I can't make any headway on after an hour or so.</p>
<p>You say that the exercises take you a lot of time to do, but not that you can't do them. If that is the case, then I recommend you do them.</p>
http://stackoverflow.com/questions/1313487/q-about-htmldocument-htmleditorkit-and-blank-spaces0Q about HTMLDocument, HTMLEditorKit, and blank spacesPaul Reiners2009-08-21T18:15:03Z2009-10-10T00:00:02Z
<p>When I run the following code:</p>
<pre><code>import java.io.IOException;
import java.io.Reader;
import java.io.StringReader;
import javax.swing.text.BadLocationException;
import javax.swing.text.EditorKit;
import javax.swing.text.Element;
import javax.swing.text.html.HTMLDocument;
import javax.swing.text.html.HTMLEditorKit;
.
.
.
String content = "x";
String html = "<html><body><dyn/>" + content + "<dyn/></body></html>";
final Reader reader = new StringReader(html);
final EditorKit editorKit = new HTMLEditorKit();
HTMLDocument hTMLDocument = new HTMLDocument();
editorKit.read(reader, hTMLDocument, 0);
Element defaultRootElement = hTMLDocument.getDefaultRootElement();
Element branchElement = defaultRootElement.getElement(1).getElement(0);
for (int i = 0; i < branchElement.getElementCount(); i++) {
Element element = branchElement.getElement(i);
System.out.print(element);
}
</code></pre>
<p>I get the following output:</p>
<pre><code>LeafElement(dyn) 1,2
LeafElement(content) 2,3
LeafElement(dyn) 3,4
LeafElement(content) 4,5
</code></pre>
<p>However, if I change the value of <code>content</code> to <code>" "</code>:</p>
<pre><code> String content = " ";
</code></pre>
<p>I get this output:</p>
<pre><code>LeafElement(dyn) 1,2
LeafElement(dyn) 2,3
LeafElement(content) 3,4
</code></pre>
<p>Why is a content <code>LeafElement</code> constructed for <code>"x"</code>, but not for <code>" "</code>? I want a <code>LeafElement</code> to be constructed for <code>" "</code>. Am I doing something wrong or is this a problem with <code>HTMLDocument</code> or <code>HTMLEditorKit</code>?</p>
http://stackoverflow.com/questions/1018974/tokenizing-and-sorting-with-xslt-1-00Tokenizing and sorting with XSLT 1.0Paul Reiners2009-06-19T16:53:57Z2009-10-09T13:42:03Z
<p>I have a delimited string (delimited by spaces in my example below) that I need to tokenize, sort, and then join back together and I need to do all this using XSLT 1.0. How would I do that? I know I need to use <code>xsl:sort</code> somehow, but everything I’ve tried so far has given me some sort of error.</p>
<p>For example, if I run the code at the bottom of this posting, I get this:</p>
<blockquote>
<p>strawberry blueberry orange raspberry
lime lemon</p>
</blockquote>
<p>What would I do if I wanted to get this instead?:</p>
<blockquote>
<p>blueberry lemon lime orange raspberry
strawberry</p>
</blockquote>
<p>Note that I’m using XSLT 1.0.</p>
<p>Here is the code, which is based on code by <a href="http://www.jenitennison.com/xslt/index.html" rel="nofollow">Jeni Tennison</a>.</p>
<pre><code><?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="tokenize1.xsl"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<xsl:call-template name="tokenize">
<xsl:with-param name="string" select="'strawberry blueberry orange raspberry lime lemon'" />
</xsl:call-template>
</xsl:template>
<xsl:template name="tokenize">
<xsl:param name="string" />
<xsl:param name="delimiter" select="' '" />
<xsl:choose>
<xsl:when test="$delimiter and contains($string, $delimiter)">
<token>
<xsl:value-of select="substring-before($string, $delimiter)" />
</token>
<xsl:text> </xsl:text>
<xsl:call-template name="tokenize">
<xsl:with-param name="string"
select="substring-after($string, $delimiter)" />
<xsl:with-param name="delimiter" select="$delimiter" />
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<token><xsl:value-of select="$string" /></token>
<xsl:text> </xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
</code></pre>
http://stackoverflow.com/questions/1462860/wizard-pattern-and-other-gui-patterns-for-infrequent-complicated-task1Wizard pattern and other GUI patterns for infrequent, complicated taskPaul Reiners2009-09-22T21:56:01Z2009-09-22T21:56:01Z
<p>We are thinking of using a <a href="http://www.welie.com/patterns/showPattern.php?patternID=wizard" rel="nofollow">Wizard pattern</a> to help a user complete a task.</p>
<p>The Wizard pattern seems to solve our problem. We are also interested in what human factors research might have to say about the basic problem of a non-expert user needing to accomplish an infrequent and complicated task-–-are there other, possibly better paradigms for doing this than a wizard?</p>
http://stackoverflow.com/questions/1434201/default-font-for-swing-text0Default font for Swing textPaul Reiners2009-09-16T16:54:50Z2009-09-17T01:34:20Z
<p>Does the text in Swing components have a default font? In particular, what about tab labels on <code>JTabbedPane</code>s?</p>
<p>I'm working on a mock-up of a GUI made with Swing and want it to blend it with a screen image I grabbed of a Swing app.</p>
http://stackoverflow.com/questions/1434201/default-font-for-swing-text/1434474#14344740Answer by Paul Reiners for Default font for Swing textPaul Reiners2009-09-16T17:42:57Z2009-09-16T17:42:57Z<p>It looks like it's Arial. That's what <a href="http://www.identifont.com" rel="nofollow">Identifont</a> tells me and it looks right.</p>
http://stackoverflow.com/questions/1423888/calling-jframe-setglasspanecomponent-more-than-once0Calling JFrame.setGlassPane(Component) more than oncePaul Reiners2009-09-14T20:59:06Z2009-09-15T22:15:28Z
<p>Is there any trick to calling <code>JFrame.setGlassPane(Component)</code> more than once? In the code below, I first call it to create a red box in the glass pane. That works fine. Then, in a mouse click handler, I call it again to create a blue box in a new glass pane. This doesn't work. The original red glass pane disappears, but the blue glass pane does not appear. What am I doing wrong here?</p>
<pre><code>public class GlassPaneProblem extends Component {
private BufferedImage img;
private JFrame f;
public void paint(Graphics g) {
g.drawImage(img, 0, 0, null);
}
public GlassPaneProblem() {
try {
img = ImageIO.read(new File("images/AppleCorps.JPG"));
} catch (IOException e) {
}
this.addMouseListener(new MouseAdapter() {
public void mouseClicked(MouseEvent e) {
BlueGlassPane blueGlassPane = new BlueGlassPane();
setTheGlassPane(blueGlassPane);
}
});
}
public Dimension getPreferredSize() {
if (img == null) {
return new Dimension(100, 100);
} else {
return new Dimension(img.getWidth(null), img.getHeight(null));
}
}
public void run() {
f = new JFrame("Glass Pane Problem");
f.add(this);
f.pack();
RedGlassPane redGlassPane = new RedGlassPane();
setTheGlassPane(redGlassPane);
f.setVisible(true);
}
void setTheGlassPane(JComponent glassPane) {
f.setGlassPane(glassPane);
f.getGlassPane().setVisible(true);
}
public static void main(String[] args) {
GlassPaneProblem glassPaneProblem = new GlassPaneProblem();
glassPaneProblem.run();
}
}
class RedGlassPane extends JComponent {
protected void paintComponent(Graphics g) {
Rectangle clip = g.getClipBounds();
g.setColor(Color.RED);
g.fillRect(clip.x + clip.width / 3, clip.y + clip.height / 3,
clip.width / 3, clip.height / 3);
}
}
class BlueGlassPane extends JComponent {
protected void paintComponent(Graphics g) {
Rectangle clip = g.getClipBounds();
g.setColor(Color.BLUE);
g.fillRect(clip.x + clip.width / 3, clip.y + clip.height / 3,
clip.width / 3, clip.height / 3);
}
}
</code></pre>
<p>Calling <code>repaint()</code> like this does not fix the problem:</p>
<pre><code>void setTheGlassPane(JComponent glassPane) {
f.setGlassPane(glassPane);
f.getGlassPane().setVisible(true);
f.repaint();
}
</code></pre>
http://stackoverflow.com/questions/1423918/is-there-an-iterative-way-to-calculate-radii-along-a-scanline/1427247#14272470Answer by Paul Reiners for Is there an iterative way to calculate radii along a scanline?Paul Reiners2009-09-15T13:40:44Z2009-09-15T13:40:44Z<p>This is sort of related to a <a href="http://home.pipeline.com/~hbaker1/hakmem/hacks.html#item149" rel="nofollow">HAKMEM item</a>:</p>
<blockquote>
<p>ITEM 149 (Minsky): CIRCLE ALGORITHM
Here is an elegant way to draw almost
circles on a point-plotting display:</p>
<pre><code>NEW X = OLD X - epsilon * OLD Y
NEW Y = OLD Y + epsilon * NEW(!) X
</code></pre>
<p>This makes a very round ellipse
centered at the origin with its size
determined by the initial point.
epsilon determines the angular
velocity of the circulating point, and
slightly affects the eccentricity. If
epsilon is a power of 2, then we don't
even need multiplication, let alone
square roots, sines, and cosines! The
"circle" will be perfectly stable
because the points soon become
periodic.</p>
<p>The circle algorithm was invented by
mistake when I tried to save one
register in a display hack! Ben Gurley
had an amazing display hack using only
about six or seven instructions, and
it was a great wonder. But it was
basically line-oriented. It occurred
to me that it would be exciting to
have curves, and I was trying to get a
curve display hack with minimal
instructions.</p>
</blockquote>
http://stackoverflow.com/questions/1423925/changing-rgb-color-values-to-represent-a-value/1423973#14239730Answer by Paul Reiners for changing rgb color values to represent a valuePaul Reiners2009-09-14T21:17:07Z2009-09-14T21:43:12Z<p>I'm not completely sure I understand your question, but, if I do:</p>
<p>Why not just scale the RGB values to the values in your range (from -9999999 to positive 9999999)? Moreover, set R, G, and B all to the same value so that you're using shades of gray to represent the value.</p>
<p>Like this:</p>
<pre><code>private final int MIN = -9999999;
private final int MAX = 9999999;
public Color getScaledColor(int val) {
int gray = (int) Math.round((double) (val - MIN) / (double) (MAX - MIN)
* 255.0);
Color color = new Color(gray, gray, gray);
return color;
}
</code></pre>
<p>Note that this solution will not give unique colors for all the values in the range you specified. But also keep in mind that the human eye can only distinguish between so many shades (and 2 * 9999999 + 1 is probably more than the number of shades than it can distinguish between).</p>
http://stackoverflow.com/questions/1407459/silent-printing-of-pdf-from-within-java1Silent Printing of PDF From Within JavaPaul Reiners2009-09-10T20:13:12Z2009-09-12T04:19:26Z
<p>We are looking into silent printing of PDF documents from within Java. The printing will be invoked from the desktop and not through a browser so we cannot use JavaScript. PDF Renderer is an operational solution but their rendering quality is not acceptable. iText does not seem to be pluggable with the Java print service. There are some commercial Java libraries, jPDFPrint by Qoppa, JPedal, and ICEpdf which we have not tried out yet.</p>
<p>Does anybody have any experience with PDF silent printing from Java?</p>
http://stackoverflow.com/questions/1369199/setting-font-color-on-defaultstyleddocument0Setting font color on DefaultStyledDocumentPaul Reiners2009-09-02T17:54:14Z2009-09-02T18:01:08Z
<p>I know that I can set the font size on a <code>javax.swing.text.DefaultStyledDocument</code> like this:</p>
<pre><code>public void apply(DefaultStyledDocument document) {
final MutableAttributeSet attributeSet = new SimpleAttributeSet();
StyleConstants.setFontSize(attributeSet, 12);
document.setCharacterAttributes(0, 80, attributeSet, false);
}
</code></pre>
<p>How do I set the font color?</p>
http://stackoverflow.com/questions/1313492/is-it-possible-to-return-multiple-items-in-one-call/1313510#13135101Answer by Paul Reiners for Is it possible to return multiple items in one call?Paul Reiners2009-08-21T18:18:49Z2009-08-21T18:18:49Z<p>Just return an array of two <code>GRect</code>s.</p>
http://stackoverflow.com/questions/1257469/equivalent-of-defsetf-in-scheme1Equivalent of defsetf in SchemePaul Reiners2009-08-10T22:01:47Z2009-08-11T02:31:55Z
<p>Is there an equivalent in Scheme of Common Lisp's <code>defsetf</code>?</p>
http://stackoverflow.com/questions/1246512/difference-between-deftype-in-common-lisp-and-scheme1Difference between deftype in Common Lisp and SchemePaul Reiners2009-08-07T19:17:39Z2009-08-08T00:42:01Z
<p>I'm trying to translate some Common Lisp code into Scheme code. The Common Lisp code has a <code>deftype</code>. Are <code>deftype</code>s in Scheme the same as <code>deftype</code>s in Common Lisp? How do you translate a <code>deftype</code> in Common Lisp into equivalent code in Scheme?</p>
http://stackoverflow.com/questions/290570/advice-about-forming-hackers-club6Advice about forming Hackers ClubPaul Reiners2008-11-14T16:06:03Z2009-08-04T19:26:08Z
<p>I'm thinking of forming a <a href="http://www.catb.org/~esr/jargon/html/H/hacker.html" rel="nofollow">Hacker</a>s Club at work. My idea is that we would meet monthly and at each meeting one member would present an interesting hack he had created. (The hacks presented wouldn't necessarily have to be software hacks; they could also be the sort of things you read about in <em>MAKE</em> magazine.) There would also be <a href="http://www.catb.org/~esr/jargon/html/A/ANSI-standard-pizza.html" rel="nofollow">ANSI standard pizza</a>, veggie pizza, and beer and pop available for socializing afterward. I'm even thinking of calling the club "<a href="http://www.catb.org/~esr/jargon/html/T/TMRC.html" rel="nofollow">TMRC</a>" even though it will have nothing to do with model railroads.</p>
<p>Has anyone ever tried doing something like this or have any advice?</p>
http://stackoverflow.com/questions/342263/calling-java-from-clojure3Calling Java from ClojurePaul Reiners2008-12-04T22:03:03Z2009-07-11T01:39:53Z
<p>When I try to run the following code (from the REPL) in Clojure:</p>
<pre><code>(dotimes [i 5]
(.start
(Thread.
(fn []
(Thread/sleep (rand 1000))
(println (format "Finished %d on %s" i (Thread/currentThread)))))))
</code></pre>
<p>I get the following error:</p>
<pre><code>java.lang.Exception: Unable to resolve symbol: i in this context
clojure.lang.Compiler$CompilerException: NO_SOURCE_FILE:6: Unable to resolve symbol: i in this context
at clojure.lang.Compiler.analyze(Compiler.java:3713)
</code></pre>
<p>What am I doing wrong here?</p>
http://stackoverflow.com/questions/1076268/menu-bar-not-displayed-on-window-open-for-mozilla-firefox0Menu bar not displayed on window.open for Mozilla FirefoxPaul Reiners2009-07-02T19:34:31Z2009-07-02T20:23:54Z
<p>When I run the JavaScript code below in Mozilla Firefox, the menu bar does not show:</p>
<pre><code> window.open(location.pathname + "?print=print",
"print-window",
"toolbar=yes,location=no,scrollbars=yes,menubar=yes");
</code></pre>
<p>What is going wrong here?</p>
<p>Note that I'm opening the same file (in another window), I'm just adding a parameter value to it. I don't know whether this matters.</p>
<p>Strangely enough, if I call:</p>
<pre><code> window.print();
</code></pre>
<p>on the new window, the menu bar does show.</p>
http://stackoverflow.com/questions/966108/choose-random-array-element-satisfying-certain-property9Choose random array element satisfying certain propertyPaul Reiners2009-06-08T17:57:53Z2009-06-08T19:13:52Z
<p>Suppose I have a list, called <code>elements</code>, each of which does or does not satisfy some boolean property <code>p</code>. I want to choose one of the elements that satisfies <code>p</code> by random with uniform distribution. I do not know ahead of time how many items satisfy this property <code>p</code>.</p>
<p>Will the following code do this?:</p>
<pre><code>pickRandElement(elements, p)
randElement = null
count = 0
foreach element in elements
if (p(element))
count = count + 1
if (randInt(count) == 0)
randElement = element
return randElement
</code></pre>
<p>(<code>randInt(n)</code> returns a random int <code>k</code> with <code>0 <= k < n</code>.)</p>
http://stackoverflow.com/questions/966108/choose-random-array-element-satisfying-certain-property/966454#9664541Answer by Paul Reiners for Choose random array element satisfying certain propertyPaul Reiners2009-06-08T19:13:52Z2009-06-08T19:13:52Z<p>decowboy has a nice proof that this works on <a href="http://forums.topcoder.com/?module=Thread&threadID=643784" rel="nofollow">TopCoder</a> </p>
http://stackoverflow.com/questions/957769/q-about-abstractapplicationcontext-getbeansoftype-and-getbean2Q about AbstractApplicationContext.getBeansOfType() and getBean()Paul Reiners2009-06-05T19:42:10Z2009-06-05T20:30:14Z
<p>We have the following legacy 2.0.7 Spring code:</p>
<pre><code>final Map<String, MyClass> secondaryFactories
= (Map<String, MyClass>) context.getBeansOfType(MyClass.class,
false, true);
return (MyClass) context.getBean("myClass");
</code></pre>
<p>where <code>context</code> is an instance of </p>
<pre><code>org.springframework.context.support.AbstractApplicationContext
</code></pre>
<p>Note that we ignore the return value of <code>getBeansOfType()</code>. This works just fine, but the problem is that the call to <code>getBeansOfType()</code> is time-consuming. However, even though we ignore the return value of this call, if we try to eliminate this call, then the instance of <code>MyClass</code> returned by <code>getBean()</code> is not fully initialized. (So, apparently, the call to <code>getBeansOfType()</code> is having some sort of side-effects that we need.)</p>
<p>We suspect that the call to <code>getBeansOfType()</code> is overkill and we could do something more lightweight so that the instance of <code>MyClass</code> obtained by the call to <code>getBean()</code> would be fully initialized (but it's not null and no exception is thrown).</p>
<p>So, is there a more efficient way of doing this?</p>
http://stackoverflow.com/questions/878422/spring-aop-error1Spring AOP errorPaul Reiners2009-05-18T15:52:48Z2009-05-18T18:23:03Z
<p>What would cause this problem at run-time?:</p>
<blockquote>
<p>The matching wildcard is strict, but
no declaration can be found for
element 'aop:config'</p>
</blockquote>
<p>Here is the relevant Spring XML:</p>
<pre><code><beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:util="http://www.springframework.org/schema/util"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/util
http://www.springframework.org/schema/util/spring-util-2.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">
.
.
.
<aop:config>
<aop:advisor pointcut="execution(* acme.exam.driver.ui.components..*(..))"
advice-ref="loggingInterceptor" />
</aop:config>
<bean id="loggingInterceptor"
class="org.springframework.aop.interceptor.CustomizableTraceInterceptor">
<property name="enterMessage"
value="ENTER: $[targetClassShortName].$[methodName]($[arguments])" />
<property name="exitMessage"
value="EXIT: $[targetClassShortName].$[methodName]($[arguments]) = $[returnValue])" />
</bean>
</beans>
</code></pre>
<p>Note that I’ve already put <em>aspectjweaver.jar</em> and <em>aspectjrt.jar</em> on the class path.</p>
http://stackoverflow.com/questions/878422/spring-aop-error/879100#8791000Answer by Paul Reiners for Spring AOP errorPaul Reiners2009-05-18T18:23:03Z2009-05-18T18:23:03Z<p>Make sure that <code><spring-framework-directory>/dist/modules/spring-aop.jar</code> is in your class path.</p>
http://stackoverflow.com/questions/859623/slowing-down-computer-for-debugging-intermittent-defect/859954#8599540Answer by Paul Reiners for Slowing down computer for debugging intermittent defectPaul Reiners2009-05-13T19:33:14Z2009-05-13T19:33:14Z<blockquote>
<p>The currently popular stability test
programs are: </p>
<ul>
<li>Prime95 (this program's torture test)</li>
<li>3DMark2001 </li>
<li>CPU Stability test </li>
<li>Sisoft sandra </li>
<li>Quake and other games </li>
<li>Folding@Home </li>
<li>Seti@home </li>
<li>Genome@home</li>
</ul>
</blockquote>
<p>This is from the stress testing documentation for Prime95.</p>
http://stackoverflow.com/questions/859623/slowing-down-computer-for-debugging-intermittent-defect0Slowing down computer for debugging intermittent defectPaul Reiners2009-05-13T18:33:47Z2009-05-13T19:33:14Z
<p>Is there a way to slow down my development computer to try to replicate a defect that only occurs intermittently on a slow machine?</p>
<p>(For what it's worth, Ableton Live has a CPU usage simulation feature, but I've never seen something like this for debuggers.)</p>
http://stackoverflow.com/questions/727544/swing-component-prints-text-differently-than-it-displays-it0Swing component prints text differently than it displays itPaul Reiners2009-04-07T20:52:25Z2009-05-13T16:28:35Z
<p>I am printing a Swing component that contains text. The Swing component renders the text just fine on the screen, but, when I print it (to a .tif file), the characters are all smashed together. Why is this?</p>
<p>Run this code to see what I mean:</p>
<pre><code>import javax.swing.*;
import javax.swing.text.MutableAttributeSet;
import javax.swing.text.SimpleAttributeSet;
import javax.swing.text.StyleConstants;
import javax.swing.text.StyledDocument;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.print.PageFormat;
import java.awt.print.Printable;
import java.awt.print.PrinterException;
import java.awt.print.PrinterJob;
public final class PrintingDemo2 implements Printable {
private final JTextPane textPane;
private static final String WORDS = "GOOD MORNING\u00AE AMERICA";
private static final String TEXT = WORDS + '\n' + WORDS + '\n' + WORDS + '\n' + WORDS + '\n' + WORDS + '\n' + WORDS;
public static void main(String[] args) {
new PrintingDemo2();
}
public PrintingDemo2() {
textPane = new JTextPane();
textPane.setText(TEXT);
final StyledDocument document = textPane.getStyledDocument();
String[] fontFamilies = new String[]{"Tahoma", "SimSum", "MS Mincho", "Batang", "Arial", "Times New Roman"};
for (int i = 0; i < fontFamilies.length; i++) {
final MutableAttributeSet attributeSet = new SimpleAttributeSet();
StyleConstants.setFontFamily(attributeSet, fontFamilies[i]);
StyleConstants.setFontSize(attributeSet, 14);
document.setParagraphAttributes(i * 22, 21, attributeSet, true);
}
final AbstractButton printContextButton = new JButton("Print Context");
printContextButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
final PrinterJob job = PrinterJob.getPrinterJob();
job.setPrintable(PrintingDemo2.this);
try {
job.print();
} catch (PrinterException ex) {
throw new RuntimeException("Printing Failed.", ex);
}
}
});
final JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
final Container contentPane = frame.getContentPane();
contentPane.setLayout(new BoxLayout(contentPane, BoxLayout.Y_AXIS));
contentPane.add(printContextButton);
contentPane.add(new JScrollPane(textPane));
frame.setSize(400, 200);
SwingUtilities.invokeLater(new Runnable() {
public void run() {
frame.setVisible(true);
}
});
}
public int print(Graphics graphics, PageFormat pageFormat, int pageIndex) throws PrinterException {
if (pageIndex >= 1) return Printable.NO_SUCH_PAGE;
RepaintManager mgr = RepaintManager.currentManager(textPane);
mgr.setDoubleBufferingEnabled(false);
final Graphics2D graphics2D = (Graphics2D) graphics;
graphics2D.translate(pageFormat.getImageableX(), pageFormat.getImageableY());
textPane.paint(graphics);
mgr.setDoubleBufferingEnabled(true);
return Printable.PAGE_EXISTS;
}
}
</code></pre>
http://stackoverflow.com/questions/1725284/gui-controls-appearing-and-disappearing-based-on-user-inputs/1725300#1725300Comment by Paul Reiners on GUI controls appearing and disappearing based on user inputsPaul Reiners2009-11-12T20:53:56Z2009-11-12T20:53:56ZI mean controls actually appearing and disappearing and the size of the window changing.
I certainly realize that a choice taken in one control might constrain choices presented in a control lower in the screen.
http://stackoverflow.com/questions/1561508/match-ini-section-blocksComment by Paul Reiners on Match INI Section BlocksPaul Reiners2009-10-13T17:41:05Z2009-10-13T17:41:05ZIf I don't use Pattern.MULTILINE, I still get the whole file.http://stackoverflow.com/questions/1561508/match-ini-section-blocks/1561561#1561561Comment by Paul Reiners on Match INI Section BlocksPaul Reiners2009-10-13T17:39:29Z2009-10-13T17:39:29ZDo you mean like this?: "^\\[[^\\]\r\n]+](?:\r?\n(?:[^\r\n].*)?)*?"
When I use that, it only returns me "[Section 2]", rather than the entire Section 2 block.http://stackoverflow.com/questions/1434201/default-font-for-swing-text/1434503#1434503Comment by Paul Reiners on Default font for Swing textPaul Reiners2009-09-16T19:27:01Z2009-09-16T19:27:01ZYes, thanks, that worked, although you forgot a pair of parentheses:
UIManager.getDefaults().getFont("TabbedPane.font")
It turned out to be Arial Bold, as I thought (for what it's worth).
http://stackoverflow.com/questions/1423888/calling-jframe-setglasspanecomponent-more-than-onceComment by Paul Reiners on Calling JFrame.setGlassPane(Component) more than oncePaul Reiners2009-09-14T21:28:48Z2009-09-14T21:28:48ZWow, validate() worked! Thanks! (repaint() didn't work for what it's worth.)http://stackoverflow.com/questions/1407459/silent-printing-of-pdf-from-within-java/1407507#1407507Comment by Paul Reiners on Silent Printing of PDF From Within JavaPaul Reiners2009-09-10T20:24:39Z2009-09-10T20:24:39ZThe rendering quality of PDF Renderer is not acceptable.http://stackoverflow.com/questions/1313922/step-through-jdk-source-code-in-intellij-idea/1313928#1313928Comment by Paul Reiners on Step through JDK source code in IntelliJ IDEAPaul Reiners2009-08-21T19:56:36Z2009-08-21T19:56:36ZAs I mentioned in my original post, I can hit my breakpoints just fine in the javax.* classes. The problem is that the debug info is not available. Anyway, just to be sure, I did what you suggested, but the debug info is still not available.http://stackoverflow.com/questions/1313487/q-about-htmldocument-htmleditorkit-and-blank-spaces/1313710#1313710Comment by Paul Reiners on Q about HTMLDocument, HTMLEditorKit, and blank spacesPaul Reiners2009-08-21T19:18:46Z2009-08-21T19:18:46ZI've thought about that. The HTML is coming from elsewhere (and is much more complex than what I'm showing). We would have to insert the "&nbsp;" characters, which is certainly possible, if it comes to that. But I'm hoping for an explanation of why this is happening.http://stackoverflow.com/questions/1313459/flipping-a-gui-component-in-the-x-z-planeComment by Paul Reiners on Flipping a gui Component in the x-z planePaul Reiners2009-08-21T18:27:01Z2009-08-21T18:27:01ZYour question isn't very clear (at least to me). Why would you expect to be able to do a 3D transformation (which is what your use of the z coordinate implies) using only 2D transformations?
Could you give a concrete example of how the transformation should work?
http://stackoverflow.com/questions/1076268/menu-bar-not-displayed-on-window-open-for-mozilla-firefox/1076286#1076286Comment by Paul Reiners on Menu bar not displayed on window.open for Mozilla FirefoxPaul Reiners2009-07-02T19:51:46Z2009-07-02T19:51:46ZSorry. I take that back. menubar=1 does work. Thanks! Now I need to check whether it works with other browsers.http://stackoverflow.com/questions/1076268/menu-bar-not-displayed-on-window-open-for-mozilla-firefox/1076286#1076286Comment by Paul Reiners on Menu bar not displayed on window.open for Mozilla FirefoxPaul Reiners2009-07-02T19:49:35Z2009-07-02T19:49:35Zmenubar=true also does not work.http://stackoverflow.com/questions/1076268/menu-bar-not-displayed-on-window-open-for-mozilla-firefox/1076286#1076286Comment by Paul Reiners on Menu bar not displayed on window.open for Mozilla FirefoxPaul Reiners2009-07-02T19:46:14Z2009-07-02T19:46:14Zmenubar=1 does not work.http://stackoverflow.com/questions/1018974/tokenizing-and-sorting-with-xslt-1-0/1018995#1018995Comment by Paul Reiners on Tokenizing and sorting with XSLT 1.0Paul Reiners2009-06-19T17:31:05Z2009-06-19T17:31:05ZI do want to use xsl:sort. Also, if the code can be written without using RTFs and using node sets, that's fine. The point is that I have a comma-delimited string that I need to tokenize, sort, and then join back together and I need to do all this using XSLT 1.0.http://stackoverflow.com/questions/1018974/tokenizing-and-sorting-with-xslt-1-0/1018995#1018995Comment by Paul Reiners on Tokenizing and sorting with XSLT 1.0Paul Reiners2009-06-19T17:04:41Z2009-06-19T17:04:41ZAssume I can't use str:tokenize for whatever reason. Anyway, the problem is with the sorting, not the tokenizing.
http://stackoverflow.com/questions/966108/choose-random-array-element-satisfying-certain-propertyComment by Paul Reiners on Choose random array element satisfying certain propertyPaul Reiners2009-06-08T18:33:01Z2009-06-08T18:33:01ZThat's true about not needing to use floats. That just occurred to me. Thanks.