Author: andy
Date: Wed Apr 23 20:32:02 2014
New Revision: 1589512
URL: http://svn.apache.org/r1589512
Log:
javadoc fixes
Modified:
jena/trunk/jena-arq/src/main/java/com/hp/hpl/jena/update/UpdateExecutionFactory.java
Modified:
jena/trunk/jena-arq/src/main/java/com/hp/hpl/jena/update/UpdateExecutionFactory.java
URL:
http://svn.apache.org/viewvc/jena/trunk/jena-arq/src/main/java/com/hp/hpl/jena/update/UpdateExecutionFactory.java?rev=1589512&r1=1589511&r2=1589512&view=diff
==============================================================================
---
jena/trunk/jena-arq/src/main/java/com/hp/hpl/jena/update/UpdateExecutionFactory.java
(original)
+++
jena/trunk/jena-arq/src/main/java/com/hp/hpl/jena/update/UpdateExecutionFactory.java
Wed Apr 23 20:32:02 2014
@@ -234,7 +234,7 @@ public class UpdateExecutionFactory
- /** Create an UpdateProcessor that send the update to a remote SPARQL
Update service.
+ /** Create an UpdateProcessor that sends the update to a remote SPARQL
Update service.
* @param update Updates
* @param remoteEndpoint Endpoint URL
* @return Remote Update processor
@@ -244,7 +244,7 @@ public class UpdateExecutionFactory
return createRemote(new UpdateRequest(update), remoteEndpoint, null,
null) ;
}
- /** Create an UpdateProcessor that send the update to a remote SPARQL
Update service.
+ /** Create an UpdateProcessor that sends the update to a remote SPARQL
Update service.
* @param update Updates
* @param remoteEndpoint Endpoint URL
* @param authenticator HTTP Authenticator
@@ -255,7 +255,7 @@ public class UpdateExecutionFactory
return createRemote(new UpdateRequest(update), remoteEndpoint, null,
authenticator) ;
}
- /** Create an UpdateProcessor that send the update to a remote SPARQL
Update service.
+ /** Create an UpdateProcessor that sends the update to a remote SPARQL
Update service.
* @param update Updates
* @param remoteEndpoint Endpoint URL
* @param context Context
@@ -266,7 +266,7 @@ public class UpdateExecutionFactory
return createRemote(new UpdateRequest(update), remoteEndpoint,
context, null) ;
}
- /** Create an UpdateProcessor that send the update to a remote SPARQL
Update service.
+ /** Create an UpdateProcessor that sends the update to a remote SPARQL
Update service.
* @param update Updates
* @param remoteEndpoint Endpoint URL
* @param context Context
@@ -278,7 +278,7 @@ public class UpdateExecutionFactory
return createRemote(new UpdateRequest(update), remoteEndpoint,
context, authenticator) ;
}
- /** Create an UpdateProcessor that send the update request to a remote
SPARQL Update service.
+ /** Create an UpdateProcessor that sends the update request to a remote
SPARQL Update service.
* @param updateRequest Updates
* @param remoteEndpoint Endpoint URL
* @return Remote Update processor
@@ -288,7 +288,7 @@ public class UpdateExecutionFactory
return createRemote(updateRequest, remoteEndpoint, null, null) ;
}
- /** Create an UpdateProcessor that send the update request to a remote
SPARQL Update service.
+ /** Create an UpdateProcessor that sends the update request to a remote
SPARQL Update service.
* @param updateRequest Updates
* @param remoteEndpoint Endpoint URL
* @param authenticator HTTP Authenticator
@@ -299,7 +299,7 @@ public class UpdateExecutionFactory
return createRemote(updateRequest, remoteEndpoint, null,
authenticator) ;
}
- /** Create an UpdateProcessor that send the update request to a remote
SPARQL Update service.
+ /** Create an UpdateProcessor that sends the update request to a remote
SPARQL Update service.
* @param updateRequest Updates
* @param remoteEndpoint Endpoint URL
* @param context Context
@@ -310,7 +310,7 @@ public class UpdateExecutionFactory
return createRemote(updateRequest, remoteEndpoint, context, null) ;
}
- /** Create an UpdateProcessor that send the update request to a remote
SPARQL Update service.
+ /** Create an UpdateProcessor that sends the update request to a remote
SPARQL Update service.
* @param updateRequest Updates
* @param remoteEndpoint Endpoint URL
* @param context Context
@@ -322,7 +322,7 @@ public class UpdateExecutionFactory
return new UpdateProcessRemote(updateRequest, remoteEndpoint, context,
authenticator) ;
}
- /** Create an UpdateProcessor that send the update request to a remote
SPARQL Update service using an HTML form
+ /** Create an UpdateProcessor that sends the update request to a remote
SPARQL Update service using an HTML form
* @param update Updates
* @param remoteEndpoint Endpoint URL
* @return Remote Update processor
@@ -332,7 +332,7 @@ public class UpdateExecutionFactory
return createRemoteForm(update, remoteEndpoint, null, null) ;
}
- /** Create an UpdateProcessor that send the update request to a remote
SPARQL Update service using an HTML form
+ /** Create an UpdateProcessor that sends the update request to a remote
SPARQL Update service using an HTML form
* @param update Updates
* @param remoteEndpoint Endpoint URL
* @param authenticator HTTP Authenticator
@@ -343,7 +343,7 @@ public class UpdateExecutionFactory
return createRemoteForm(update, remoteEndpoint, null, null) ;
}
- /** Create an UpdateProcessor that send the update request to a remote
SPARQL Update service using an HTML form
+ /** Create an UpdateProcessor that sends the update request to a remote
SPARQL Update service using an HTML form
* @param update Updates
* @param remoteEndpoint Endpoint URL
* @param context Context
@@ -354,7 +354,7 @@ public class UpdateExecutionFactory
return createRemoteForm(new UpdateRequest(update), remoteEndpoint,
null, null) ;
}
- /** Create an UpdateProcessor that send the update request to a remote
SPARQL Update service using an HTML form
+ /** Create an UpdateProcessor that sends the update request to a remote
SPARQL Update service using an HTML form
* @param update Updates
* @param remoteEndpoint Endpoint URL
* @param context Context
@@ -366,7 +366,7 @@ public class UpdateExecutionFactory
return createRemoteForm(new UpdateRequest(update), remoteEndpoint,
null, authenticator) ;
}
- /** Create an UpdateProcessor that send the update request to a remote
SPARQL Update service using an HTML form
+ /** Create an UpdateProcessor that sends the update request to a remote
SPARQL Update service using an HTML form
* @param updateRequest Updates
* @param remoteEndpoint Endpoint URL
* @return Remote Update processor
@@ -376,7 +376,7 @@ public class UpdateExecutionFactory
return createRemoteForm(updateRequest, remoteEndpoint, null, null) ;
}
- /** Create an UpdateProcessor that send the update request to a remote
SPARQL Update service using an HTML form
+ /** Create an UpdateProcessor that sends the update request to a remote
SPARQL Update service using an HTML form
* @param updateRequest Updates
* @param remoteEndpoint Endpoint URL
* @param authenticator HTTP Authenticator
@@ -387,7 +387,7 @@ public class UpdateExecutionFactory
return createRemoteForm(updateRequest, remoteEndpoint, null,
authenticator) ;
}
- /** Create an UpdateProcessor that send the update request to a remote
SPARQL Update service using an HTML form
+ /** Create an UpdateProcessor that sends the update request to a remote
SPARQL Update service using an HTML form
* @param updateRequest Updates
* @param remoteEndpoint Endpoint URL
* @param context Context
@@ -398,7 +398,7 @@ public class UpdateExecutionFactory
return new UpdateProcessRemoteForm(updateRequest, remoteEndpoint,
context) ;
}
- /** Create an UpdateProcessor that send the update request to a remote
SPARQL Update service using an HTML form
+ /** Create an UpdateProcessor that sends the update request to a remote
SPARQL Update service using an HTML form
* @param updateRequest Updates
* @param remoteEndpoint Endpoint URL
* @param context Context