You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 30, 2024. It is now read-only.
in XMLHTTPServiceProvider urlSuffix & serializer are declared protected
protected var urlSuffix:String;
protected var serializer:ISerializer;
so one needs to subclass to modify them if they were declared public or had setter it would make changing them easier for those who want to use for example standard xml format instead of fxml or want to use a customized serializer
Also in XML serializer ID need to be give as a child tag of the node but sometimes it is given as an attribute instead so changing
var node:XML = XML(source);
.....
var nodeId:String = node.id;
.....
to
var node:XML = XML(source);
.....
var nodeId:String = node.id;
if(!nodeId)
node.attribute("id");
.....
would make it more adoptable
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
it is not actually a bug but a request
in XMLHTTPServiceProvider urlSuffix & serializer are declared protected
so one needs to subclass to modify them if they were declared public or had setter it would make changing them easier for those who want to use for example standard xml format instead of fxml or want to use a customized serializer
Also in XML serializer ID need to be give as a child tag of the node but sometimes it is given as an attribute instead so changing
to
would make it more adoptable
The text was updated successfully, but these errors were encountered: