Posts by La Treta • 109 points
5 posts
-
0
votes1
answer49
viewsQ: Would it be interesting guidelines using http.get?
This is a piece of html: <tr ng-repeat="projeto in projetos"> <td>{{projeto.name}}</td> <td>{{projeto.status}}</td> </tr> It uses a controller that does the…
-
0
votes3
answers2558
viewsQ: How to align a text in the middle of the height of an image?
I tried several ways and still could not, I’m kind of new with CSS, I wanted this "Name" to be at the time that matches the middle of the image next.…
-
0
votes1
answer166
viewsQ: How to clear the Foreign Keys field in SQL
I wonder if there is a way to clear the user_id/store_id reference present in the table user_store CREATE TABLE IF NOT EXISTS `user`( `id` INT(11) PRIMARY KEY AUTO_INCREMENT) CREATE TABLE IF NOT…
-
3
votes1
answer838
viewsQ: Interface defining the signature in a generic way of the methods to be implemented
I own three classes: Repositoriosolicitant Repositoriomotorist Repositorioviagem All have the following methods with the exception of Repositorioviagem which does not have "Change". The Object can…
-
7
votes3
answers189
viewsQ: Is it better to have a kind of exception for each case or a more general exception?
A project from my college was asked to create a class called RepositorioException which is a subclass of Exception to be used for handling exceptions in repository classes, where:…