Tagged Questions
1
vote
2answers
30 views
Models not being saved in Play Framework
Assume a model named User:
@Entity
public class User extends Model {
@Id
@Constraints.Min(10)
public Long id;
@Constraints.Required
public String username;
...
0
votes
2answers
59 views
Java Model Objects design
So I've been reading some Effective Java! And one of the most inspiring sections of the book is the Immutable Object/Builder section where Blosh writes about the "Builder" - class instead of just ...
0
votes
1answer
26 views
Models subpackages in Play framework
The list of classes in my models package is getting pretty big and I want to refactor some of the classes into their own subpackage.
For instance, all forms go into models.forms, all users go into ...
1
vote
0answers
121 views
Spring 3 MVC - Model not displaying in JSP Page
On the surface, this question will sound a lot like questions that may have been asked previously on SOF but I tried those answers long ago and no luck.
(For example, this question spring 3 not ...
0
votes
0answers
40 views
Model relationships in DAO pattern
I'm implementing a web application and I need to connect to a DB. The idea is using a DAO pattern but I have a doubt. Imagine that I have the next tables:
Department: Businnes departments.
Employee: ...
0
votes
2answers
61 views
Understanding java.io library [closed]
It is since yesterday I'm reading to Java on-line documentation and I noticed that it focuses more on practice than describing the mechanism of that library.
Since there are a lot of classes in IO ...
0
votes
1answer
49 views
Spring form not populating the data to model object
My model object has a 'CtlgEntry' attribute which has an attribute 'yearPublished'. The form has to be populated but the following error is thrown:
org.hibernate.PropertyAccessException: Null value ...
1
vote
0answers
307 views
Error MVC org.springframework.validation.BeanPropertyBindingResult: 1 errors with array
Hi I try pass an array in a bean from jsp to java.
@ModelAttribute("areasActividadAdminBean")AreasActividadAdminBean areasActividadAdminBean
Agrupacion[] listaAgrupaciones = x;
...
1
vote
1answer
95 views
MVC logic for Android application
I would to write an Android application for detect object in a video frame obtained from an Parrot Ar Drone. I've choose to use an MVC pattern for this purpose, when the Model contains the drone ...
0
votes
1answer
66 views
JTable - AutoRowSorter - getColumnClass - not working
In my Table Model I have an ArrayList<ArrayList<Object>> which contains my data.
The data has been read in from a .csv file, each record is of the form:
...
0
votes
2answers
85 views
Java Entity Table Model
I want to make a table model which stores entities via a list. Like this;
List list = new ArrayList<Entity>();
list.add(entity);
tableModel.setEntityVector(list);
in the Entity Table Model ...
0
votes
1answer
71 views
What's wrong with this simple EMF Model?
What's wrong with this model:
/** @model abstract="true" */
public interface ContainedObject {
/** @model */
public Container getContainer();
}
/** @model abstract="true" */
public interface ...
0
votes
2answers
54 views
JTable model column
I have a JTable and a Model for that table.
Now I want to change the order of the columns and to hide or show some columns (e.g. like Windows Explorer in "Detail View" via Menu on rightclick).
My ...
0
votes
1answer
79 views
Display JList elements from model
I have a list of Objects Person (int age, String name) that are stored in a DefaultListModel to be assigned to the JList.
DefaultListModel model;
model = new DefaultListModel();
Person p = new ...
2
votes
2answers
78 views
Setting button model makes check box non-operational
Why can't I set button model for JCheckBox?
The following code works and draws a window with one single check box in the center. Check box is operational:
public class JCheckButton_Test {
public ...
0
votes
0answers
30 views
Order lifecycle - Model in object or in separate class
@Entity
public class Order{
@ManyToOne
private LocalStore store;
private OrderStatus status;
public void acceptOrder(LocalStore store){
//business logic
}
}
Is is ...
0
votes
2answers
47 views
How should I model my system - database implication
I have a main class, a login class and a gui class.
Within my main I am creating a database connection using the Singleton pattern - only one instance of this connection.
I want to access the ...
0
votes
0answers
231 views
Forms and Validation in Model in Play Framework 2 Scala and Java
First of all, I do not have much experience in Play 2 or Scala, I am still just learning it. However, after reading the tutorials and doing quite a bit of googling, I am still rather clueless about ...
2
votes
2answers
75 views
Don't understand this NullPointerException with ComboBox
I can't understand why I'm getting this NullPointerException. I started with much different looking code (and improved to what you see) all in attempts of fixing the bug and I just can't figure out ...
0
votes
1answer
96 views
Searching for Java MVC Tutorial with more than 1 View
Hello i am searching for a Java MVC Tutorial with more than 1 View. So that there is a navigation to a different View when the user, for example, click on a button.
Java with MVC for 1 View is totaly ...
0
votes
0answers
107 views
Model view controller with Java sql [closed]
I am creating a Java/sql application which has distinct functionalities such as Profile , Jobs, Events,Placements, Opportunities etc each which are allowed for adding, editing, deleting and I'm ...
0
votes
0answers
94 views
Bancha Equivalent for Java (and Ext.js/Sencha Touch)
I'm used to building Ext.js (or Sencha Touch) apps with a CakePHP backend using Bancha. Basically Bancha will generate the frontend (Ext.js) model classes based on the backend (CakePHP) model classes ...
0
votes
1answer
63 views
Using multiple shaders
Im working on my school project and just starting it. Provided with a framework ive managed to load a SGF model and display it, but when i want to use another shader for creating a simple textured ...
1
vote
2answers
734 views
Loding a weka model to a java code
I have saved the result of weka classification by right clicking on the model and selecting "save model". Now, I want to load it and work with in my "JAVA" application. How can I do that? Models could ...
1
vote
2answers
89 views
MVC: How to properly create a view for an unknown model
Suppose I have a superclass, Model. Suppose also I have two subclasses, NumberModel and StringModel, one which stores a number and the other stores a string. To implement the MVC scheme, I make two ...
2
votes
2answers
86 views
How do swing component's model can request redraw?
I have my custom component which holds it's data in my custom data class. My component extends JComponent while data is fully custom.
What is conventional pattern a data class can notify component it ...
0
votes
1answer
424 views
How is used @RequestAttribute and @ModelAttribute annotation in this Spring MVC showcase example?
I am pretty new in Spring MVC.
In this period I am studying the Spring MVC showcase example dowlodable from STS dashboard.
I have some problemto understand how Custom Resolvable Web Arguments are ...
2
votes
2answers
122 views
Display values inside a JList -
I have a method that returns a HashMap, and is defined as follows;
public HashMap<Integer, Animal> allAnimal(){
return returnsAHashMap;
}
Animal will have the following values in ...
0
votes
1answer
79 views
MVC : How to deal with complex Model?
I am trying to apply MVC in my development (without any framework) but I have a lot of trouble. First trouble: the M!
How do you deal with complex Model where there is a deep data structure and ...
0
votes
2answers
103 views
(Java) Access Spring Model without using parameters or ModelAndView
Sorry about the title. I couldn't think of a better wording.
Is there any way to set the default Model that Spring will supply the page without first retrieving it as an argument in the ...
1
vote
2answers
541 views
JComboBox with DefaultComboBoxModel doesn't allow to add or remove
This is my first post and I think I am doing it right.
I have a program that takes the user input from a AutoComplete jComboBox and then send's the input to be stored into a text file.(AutoComplete ...
0
votes
0answers
64 views
Find location of character index in a Swing text control
I want to do some custom drawing of brackets around certain text in a text control in Java Swing. But I need to know where to draw them. I do know the exact range of characters in the text content, so ...
0
votes
2answers
52 views
Keep ID separately from object
I have a Java object user that is stored in a database with a primary key. For example:
id | login | name | surname
---------------------------
0 | admin | Bob | Marley
1 | ..... | .... | ......
...
0
votes
0answers
98 views
How to make radio button selected when clicked the current record in table?
I have a case like this :
I have entity named infra (data type : string)
I have two radio button named rd1 and rd2
I have two textfield named txt1 and txt
when i click rd1, rd2 will disabled and ...
0
votes
2answers
68 views
How i can get max value of this increment?
I have increment syntax, and i want to save the last maximum value , so when i close my program and open it again , the increment will start from the last maximum value not start from 0 again .. but ...
0
votes
3answers
91 views
Can the View call the Model in a MVC-structure in Java?
I'm making a basic MVC structure in Java and I'm wondering if the view is allowed to call the model for information?
For example: A user clicks a button that is created in the View. The View calls ...
0
votes
1answer
143 views
Spring, Hibernate and multiple schemas in one codebase
What is the accepted practice to use multiple database 'models' in a Spring / Hibernate combo ?
Would appreciate some help on an issue that has me scratching my head, as I am no expert in ...
0
votes
1answer
93 views
Partial data displayed and rest by tooltip using JTextPane
I just wanted a code where I can display partial text and the remaining text by the tool tip using 'JTextPane'.
Eg: If text is 'Java is re useable'. I want it to display 'Java is ...'
Then I want to ...
0
votes
1answer
250 views
Java - Setting JTable as uneditable using a text Area
I've read that i can use text area wherein i'll put my table to it then set the text area as uneditable which will make the table uneditable.
but when i do it, the text area don't show the table that ...
2
votes
2answers
113 views
Generate Object Model/AST of C program in Java
I want to parse a C source file and get its contents into an AST (abstract syntax tree). It would be very nice if I had my AST stored in Java objects, similar to a XML parsed with DOM. The concepts of ...
1
vote
1answer
814 views
How do I clear a JTree model?(Removing all nodes)
So this is a method of mine that is called everytime a new node is added.I need the model cleared everytime.The DefaultListModel has a .clear() method.The DefaultTreeModel does not.Help?
...
0
votes
2answers
74 views
Panel use same model as Parent page
How do i get a panel to use the some modelObject as the parent page?
I have a form that uses an OwnedAccount as its model, and in the form i have a custom panel which has a refreshingview containing ...
2
votes
1answer
466 views
MVC - do I need to use Controller in the View?
As I know in the standard implementation of the MVC we pass Controller and Model to the View
But Im a little bit disagree with this idea. I dont want my view to know about both controller and model ...
0
votes
1answer
190 views
Java Model View Controller for file reading
I am having a lot of trouble designing a small program that reads a text document and writes statistics to a text file. We have to use a model-view-controller format that we haven't learned yet!
...
1
vote
1answer
123 views
Entity versus Model
I was tidying up some classes in my com.business.model package and realised every one of them was either directly annotated @Entity or was attached to one (I'm using Morphia). It occurred to me that ...
1
vote
1answer
158 views
Jruby Rails on Torquebox calling EJB services - model classes
I'd like to play with Torquebox and have Rails (or e.g. Sinatra) as a frontend, but have all my services and business layer in EJB with CDI and JPA and all that stuff.
1) Can I have it all deployed ...
1
vote
0answers
169 views
fbx parser/loader for java exists?
I'm building an interactive program in java, but I need to extract animation from an object. Yes, I could do it by keyframing each animation, but the number of files (plus processing) adds up real ...
1
vote
1answer
47 views
How to implement hierarchical location information
I am looking at a greenfield app, and I need to add support for specifying a location, in the vein of vrbo.com, where you can drill down from the US at large, to a state, region, city/locale.
What's ...
-3
votes
2answers
140 views
what does this function do in detail?
public static Finder<Long,Task> find = new Finder<Long,Task>(
Long.class, Task.class
);
this is a function of a model in Playframework using EBean Model superclass. i dont ...
0
votes
2answers
194 views
How do you model in UML Java or C# or even DB that a customer can be either a Physical Person or a Company and a Company has employees & contractors
All tutorials I can find always tackle with toy uml use cases like the one here http://www.ibm.com/developerworks/java/library/j-jmod0508/
I can't see how you can model this in UML Use Case:
a ...



