Tagged Questions
The oval tag has no wiki summary.
3
votes
1answer
54 views
How can I put the circles at the center of the line?
I have a diagonal line and I have also a circles having a 100 meters in distance. The problem is that the circles are not really to the center of the line. I know this is quiet easy but I'm just ...
2
votes
1answer
55 views
parameter validation with net.sf.oval (in play framework)
I would love to use the @NotNull annotation (or @Required or anything) for my own methods. While this works quite well in Controller and Model classes I cant get it to work in my own. This probably is ...
2
votes
1answer
276 views
How to get the numeric ID of an IIS 6 Metabase property in C#?
The code below works OK and can read everything in a remote IIS 6 server's metabase -- except the frikkin' numeric ID of the properties. I can't find them in the PropertyValueCollection object.
var ...
2
votes
3answers
526 views
Oval collision detection not working properly
So I'm trying to implement a test where a oval can connect with a circle, but it's not working.
edist = (float) Math.sqrt(
Math.pow((px + ((pwidth/2) )) - (bx + (bsize/2)), 2 ) +
...
1
vote
1answer
48 views
Android : canvas.drawoval() + rotation
I'd like to draw an oval, but I'd like to be able to rotate it. I know that I can use canvas.drawOval(...) and canvas.rotate(...). However, I want to just rotate my oval and not the whole canvas; ...
1
vote
0answers
38 views
Is it possible to set multiple messages using oval AbstractAnnotationCheck?
I am using the Oval validation framework to validate fields that HTML fields cannot hold malicious javascript code. For the malicious code detection, I am using an external framework that returns me ...
1
vote
2answers
226 views
Differences between drawing an Ellipse in Android and Java
In Java for some reason the Ellipse2D.Double uses the parameters (height, width, x, y) where as when I create a RectF in Android the parameters are (left, top, right, bottom) so I'm a bit confused on ...
1
vote
0answers
68 views
Changing WMI/WQL results output
Now this is a odd one but as I don't know WMI/WQL I hope someone can help and spot a simple mistake..
I need to find out if a system is a domain controller or not - simple with WMI
select DomainRole ...
1
vote
1answer
429 views
Get coords of an oval in Tkinter
I can't seem to figure out how to reterive the x,y position of an oval created on a Tkinter canvas using Python via
c.create_oval(x0, y0, x1, y2)
I understand that Tkinter creates the oval inside ...
1
vote
1answer
269 views
Oval shaped images in ASP.Net 3.5
I need to generate oval shaped images on ASP.Net pages. Either I need to resize it to oval shape when it's being uploaded or show it as oval shape on the fly.
Have a look at cac.mysiteportal.com to ...
1
vote
2answers
202 views
What is the algorithm for storing the pixels in an oval in Javascript?
How would one draw an oval in JS?
0
votes
1answer
25 views
Transparent Oval Border in Windows Forms
Is it possible to make a transparent and oval border in windows forms? Inner part of the form should not be transparent.
We have a image with a transparent and oval border, we set it as the ...
0
votes
0answers
15 views
Oval - Multiple ValidateWithMethod / complex custom validations with different messages?
I am trying to use @ValidateWithMethod to validate a property. I have two very different custom validations. I want to put them in separate methods so that I can have different messages. However, ...
0
votes
0answers
47 views
How do I add additional context / values for a custom XML based method constraint with the OVal validation framework
With the OVal validation framework (http://oval.sourceforge.net/) it is possible to create custom annotation or XML based constraints (http://oval.sourceforge.net/userguide.html#d4e493).
My intention ...
0
votes
1answer
183 views
Oval - object validation framework for Java
@ValidateWithMethod(methodName = "isValidPostalCode", parameterType = String.class)
private String _postalCode;
private boolean isValidPostalCode(String _postalCode) {
boolean status = false;
...
0
votes
0answers
24 views
c# SCAP (OVAL) interpreter
Can anyone recommend a good C# open source project for OVAL 5.10 interpreter? I found only one project http://www.modsic.org/.
0
votes
2answers
104 views
Should I use OVal (Object Validation Framework) even if it requires AspectJ or not?
I have a Java Maven project which is developed by multiple people.
As I really like doing JUnit Tests and the like, the concept of OVal intrigues me because I can write code like:
@NotNull
@NotEmpty
...
0
votes
1answer
105 views
How do I create custom XML based constraints with the OVal validation framework
With the Oval validation framework (http://oval.sourceforge.net/) it is possible to create custom annotation based constraints (http://oval.sourceforge.net/userguide.html#d4e493).
My intention is to ...
0
votes
1answer
310 views
Where in the registry can I find the current setting of an IE8 policy?
I have set the following policy with gpedit in a Windows Server 2008 machine that has IE8:
I have a source that tells me that configuration resides in ...
0
votes
1answer
248 views
Oval Validation
Can we access request object in isSatisfied() (class net.sf.oval.AbstractAnnotationCheck) method or can we pass an extra parameter in this method to use further. I have a scenario where I need to pass ...
0
votes
2answers
216 views
How to achieve spring injection in oVal validation Framework?
This seems to be a big gap in it's spring integration. Has anybody done this or has successfully integrated Spring and Oval successfully?