Posts by glima000 • 124 points
4 posts
-
5
votes2
answers4736
viewsA: How to print text in the same line in Python
Change your print(i) to print(i, end=" ") For Python 2 use: print i,
-
0
votes1
answer53
viewsA: Problem to persist data in the database
The Moreobjects class is not available in versions older than 18.0 of Guava. Make sure your Guava version is correct.
-
1
votes1
answer799
viewsA: Primefaces: Modal dialog does not open
onClick can’t see your widgetVar in another form. Include your dialog within your frm-customers-registered form or refer the form to your onclick call. Example: <ui:define name="content">…
-
4
votes3
answers122
viewsA: Why does the code print 0 instead of 5?
You must use this.b to reference the attribute of your class. Thus, your class B code should be: class B { private int b; public int getB() { return this.b; } public void setB(int b) { this.b=b; } }…