Java 8 introduces the concept of "standard method" to allow adding new functionality to an interface.
C # provides "extension methods" that allow you to "add" methods (features) to existing types.
Considering how they are implemented by th...
Always when I try to save an object with a collection of data mapped as HasMany I have to put a circular reference so that NHibernate can save this object cascade.
For example I have the following mapping of the parent class.
public...
Today with HTML5/CSS3 and its many ways to align elements (divs)
Is it wrong to structure a form with a table?
For example:
<form action="action" method="POST">
<table style="width:100%">
<tr>
<td>Nome&l...
What I know is that XHTML needs to be valid XML. This implies, for example, that all tags need to be closed. For example:
Errado:
<br>
Certo:
<br/>
But what is the use of this? What is it for? When should it be used?
What does this anti-theft code in Javascript do?
<html><head></head><body onload="challenge();">
<script>
eval(function(p,a,c,k,e,r){e=function(c){return c.toString(a)};if(!''.replace(/^/,String)){while(c--)r[e(c)...
ANS provides the .XSD , and .WSDL files for TISS implementation.
S and I generate the code by .XSD, I have the classes structured correctly. Example:
namespace TissV3
{
class Cabecalho
{
...
}
class...
I'd like to know the semantic, visual difference and front-end and back-end web development.
@edit
Related:
Is there any kind of dependency? To have the layout you need to have
the template?
I have text inside a String.
I'll go through this String. As I go through it, I must take every word it contains.
I thought about using string.split(" "); but I need to treat. "" ";" "," ":" "!" "?" among other cases.
How can I do this?...
To develop in Ruby on Rails, I use here a VirtualBox virtual machine with Ubuntu Server 14.04 without graphical interface installed.
Recently I discovered a configuration that improves absurdly VM performance:
Enable 3D video acceleration...
I have questions about use case and test case . In my understanding both are the same things, just a UML diagram, but in college my teacher said that a test case is not a diagram and not a use case in> but did not go into detail, however,...